Qt: Fix full-buffer rewind

This commit is contained in:
Vicki Pfau 2023-03-01 15:59:46 -08:00
parent 10a3165642
commit ee21eed29c
2 changed files with 1 additions and 3 deletions

View File

@ -21,6 +21,7 @@ Other fixes:
- 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 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 empty receive calls returning unknown error on Windows
Misc:

View File

@ -518,9 +518,6 @@ void CoreController::setRewinding(bool rewind) {
}
void CoreController::rewind(int states) {
if (!states) {
return;
}
if (!m_threadContext.core->opts.rewindEnable) {
emit statusPosted(tr("Rewinding not currently enabled"));
}