mirror of https://github.com/mgba-emu/mgba.git
GB Serialize: Fix deserializing video STAT
This commit is contained in:
parent
b0a2df6190
commit
3d8232eb3c
1
CHANGES
1
CHANGES
|
@ -13,6 +13,7 @@ Bugfixes:
|
|||
- GB, GBA: Fix crashes when attempting to identify null VFiles
|
||||
- GB MBC: Fix RTC initialization (fixes mgba.io/i/825)
|
||||
- GB MBC: Fix RTC loading when file size is off
|
||||
- GB Serialize: Fix deserializing video STAT
|
||||
Misc:
|
||||
- Qt: Don't rebuild library view if style hasn't changed
|
||||
- SDL: Fix 2.0.5 build on macOS under some circumstances
|
||||
|
|
|
@ -585,4 +585,5 @@ void GBIODeserialize(struct GB* gb, const struct GBSerializedState* state) {
|
|||
gb->video.renderer->writeVideoRegister(gb->video.renderer, REG_SCX, state->io[REG_SCX]);
|
||||
gb->video.renderer->writeVideoRegister(gb->video.renderer, REG_WY, state->io[REG_WY]);
|
||||
gb->video.renderer->writeVideoRegister(gb->video.renderer, REG_WX, state->io[REG_WX]);
|
||||
gb->video.stat = state->io[REG_STAT];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue