1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-23 03:32:32 +00:00

Merge pull request #1128 from TomHarte/SMSFetch

Fix base for Master System fetching.
This commit is contained in:
Thomas Harte 2023-04-30 16:48:41 -04:00 committed by GitHub
commit 4ebc3344cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -544,7 +544,7 @@ struct SMSSequencer {
} }
if(cycle >= 25 && cycle < 153) { if(cycle >= 25 && cycle < 153) {
constexpr int offset = cycle - 39; constexpr int offset = cycle - 25;
constexpr int block = offset >> 2; constexpr int block = offset >> 2;
constexpr int sub_block = offset & 3; constexpr int sub_block = offset & 3;