mirror of https://github.com/mgba-emu/mgba.git
Qt: Block a bug whereby undoing a save can overwrite the wrong save
This commit is contained in:
parent
f05cc8d139
commit
8ff8876e37
|
@ -559,8 +559,9 @@ void GameController::setUseBIOS(bool use) {
|
|||
}
|
||||
|
||||
void GameController::loadState(int slot) {
|
||||
if (slot > 0) {
|
||||
if (slot > 0 && slot != m_stateSlot) {
|
||||
m_stateSlot = slot;
|
||||
m_backupSaveState.clear();
|
||||
}
|
||||
GBARunOnThread(&m_threadContext, [](GBAThread* context) {
|
||||
GameController* controller = static_cast<GameController*>(context->userData);
|
||||
|
|
Loading…
Reference in New Issue