Qt: Block a bug whereby undoing a save can overwrite the wrong save

This commit is contained in:
Jeffrey Pfau 2015-07-16 23:50:33 -07:00
parent f05cc8d139
commit 8ff8876e37
1 changed files with 2 additions and 1 deletions

View File

@ -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);