mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix full-buffer rewind
This commit is contained in:
parent
10a3165642
commit
ee21eed29c
1
CHANGES
1
CHANGES
|
@ -21,6 +21,7 @@ Other fixes:
|
||||||
- Qt: Disable attempted linking betwen incompatible platforms (fixes mgba.io/i/2702)
|
- Qt: Disable attempted linking betwen incompatible platforms (fixes mgba.io/i/2702)
|
||||||
- Qt: Fix modifier key names in shortcut editor (fixes mgba.io/i/2817)
|
- Qt: Fix modifier key names in shortcut editor (fixes mgba.io/i/2817)
|
||||||
- Qt: Fix a handful of edge cases with graphics viewers (fixes mgba.io/i/2827)
|
- Qt: Fix a handful of edge cases with graphics viewers (fixes mgba.io/i/2827)
|
||||||
|
- Qt: Fix full-buffer rewind
|
||||||
- Scripting: Fix receiving packets for client sockets
|
- Scripting: Fix receiving packets for client sockets
|
||||||
- Scripting: Fix empty receive calls returning unknown error on Windows
|
- Scripting: Fix empty receive calls returning unknown error on Windows
|
||||||
Misc:
|
Misc:
|
||||||
|
|
|
@ -518,9 +518,6 @@ void CoreController::setRewinding(bool rewind) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void CoreController::rewind(int states) {
|
void CoreController::rewind(int states) {
|
||||||
if (!states) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (!m_threadContext.core->opts.rewindEnable) {
|
if (!m_threadContext.core->opts.rewindEnable) {
|
||||||
emit statusPosted(tr("Rewinding not currently enabled"));
|
emit statusPosted(tr("Rewinding not currently enabled"));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue