mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-26 08:49:37 +00:00
Fix base for Master System fetching.
This commit is contained in:
parent
19d03dd4fd
commit
6552d962ab
@ -544,7 +544,7 @@ struct SMSSequencer {
|
||||
}
|
||||
|
||||
if(cycle >= 25 && cycle < 153) {
|
||||
constexpr int offset = cycle - 39;
|
||||
constexpr int offset = cycle - 25;
|
||||
constexpr int block = offset >> 2;
|
||||
constexpr int sub_block = offset & 3;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user