GB Memory: Actually load latch time from savestate

This commit is contained in:
Vicki Pfau 2017-08-12 14:13:24 -07:00
parent 546688f9fb
commit 66d5106e0b
2 changed files with 2 additions and 2 deletions

View File

@ -32,6 +32,7 @@ Bugfixes:
- ARM: Fix MSR when T bit is set - ARM: Fix MSR when T bit is set
- GB Video: Fix potential hang when ending mode 0 - GB Video: Fix potential hang when ending mode 0
- GB Memory: Fix HDMA count starting in mode 0 (fixes mgba.io/i/855) - GB Memory: Fix HDMA count starting in mode 0 (fixes mgba.io/i/855)
- GB Memory: Actually load latch time from savestate
Misc: Misc:
- GBA Timer: Use global cycles for timers - GBA Timer: Use global cycles for timers
- GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722) - GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)

View File

@ -713,8 +713,7 @@ void GBMemoryDeserialize(struct GB* gb, const struct GBSerializedState* state) {
} }
break; break;
case GB_MBC3_RTC: case GB_MBC3_RTC:
// TODO? LOAD_64LE(gb->memory.rtcLastLatch, 0, &state->memory.rtc.lastLatch);
//LOAD_64LE(gb->memory.rtcLastLatch, 0, &state->memory.rtc.lastLatch);
break; break;
case GB_MBC7: case GB_MBC7:
memory->mbcState.mbc7.state = state->memory.mbc7.state; memory->mbcState.mbc7.state = state->memory.mbc7.state;