mirror of https://github.com/mgba-emu/mgba.git
GB Video: Fix potential hang when ending mode 0
This commit is contained in:
parent
3227d74e4d
commit
f252436d0a
1
CHANGES
1
CHANGES
|
@ -30,6 +30,7 @@ Bugfixes:
|
|||
- Qt: Fix timezone issues with time overrides
|
||||
- Qt: Fix sprite export pausing game indefinitely (fixes mgba.io/i/841)
|
||||
- ARM: Fix MSR when T bit is set
|
||||
- GB Video: Fix potential hang when ending mode 0
|
||||
Misc:
|
||||
- GBA Timer: Use global cycles for timers
|
||||
- GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)
|
||||
|
|
|
@ -227,6 +227,7 @@ void _endMode0(struct mTiming* timing, void* context, uint32_t cyclesLate) {
|
|||
video->mode = 1;
|
||||
video->modeEvent.callback = _endMode1;
|
||||
|
||||
mTimingDeschedule(&video->p->timing, &video->frameEvent);
|
||||
mTimingSchedule(&video->p->timing, &video->frameEvent, -cyclesLate);
|
||||
|
||||
if (!_statIRQAsserted(video, oldStat) && GBRegisterSTATIsOAMIRQ(video->stat)) {
|
||||
|
|
Loading…
Reference in New Issue