mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix rewinding enabling the menu bar
This commit is contained in:
parent
da226abba6
commit
e9c82df518
|
@ -519,7 +519,9 @@ void GameController::startRewinding() {
|
|||
return;
|
||||
}
|
||||
m_wasPaused = isPaused();
|
||||
bool signalsBlocked = blockSignals(true);
|
||||
setPaused(true);
|
||||
blockSignals(signalsBlocked);
|
||||
m_rewindTimer.start();
|
||||
}
|
||||
|
||||
|
@ -528,7 +530,9 @@ void GameController::stopRewinding() {
|
|||
return;
|
||||
}
|
||||
m_rewindTimer.stop();
|
||||
bool signalsBlocked = blockSignals(true);
|
||||
setPaused(m_wasPaused);
|
||||
blockSignals(signalsBlocked);
|
||||
}
|
||||
|
||||
void GameController::keyPressed(int key) {
|
||||
|
|
Loading…
Reference in New Issue