mirror of https://github.com/mgba-emu/mgba.git
Wii: Fix game fast-forwarding after slowing down
This commit is contained in:
parent
bd87038c9b
commit
2f68ea1b48
1
CHANGES
1
CHANGES
|
@ -112,6 +112,7 @@ Other fixes:
|
|||
- Qt: Fix inability to clear default keybindings
|
||||
- Qt: Release held actions if they get rebound
|
||||
- Vita: Fix analog controls (fixes mgba.io/i/1554)
|
||||
- Wii: Fix game fast-forwarding after slowing down
|
||||
Misc:
|
||||
- GB Memory: Support manual SRAM editing (fixes mgba.io/i/1580)
|
||||
- GBA Audio: Redo channel 4 batching for GBA only
|
||||
|
|
|
@ -648,6 +648,8 @@ static void _drawStart(void) {
|
|||
VIDEO_WaitVSync();
|
||||
}
|
||||
referenceRetraceCount = retraceCount;
|
||||
} else if (frameLimiter && referenceRetraceCount < retraceCount - 1) {
|
||||
referenceRetraceCount = retraceCount - 1;
|
||||
}
|
||||
_CPU_ISR_Restore(level);
|
||||
|
||||
|
|
Loading…
Reference in New Issue