Fixed Missing DoFrame Call

Somewhere in the process of getting the memory peeking right for achievements, the AchievementManager call to DoFrame went missing. This restores it properly.
This commit is contained in:
LillyJadeKatrin 2023-06-01 22:01:54 -04:00
parent 32f7873ee6
commit e2d0ff718c

View File

@ -900,6 +900,10 @@ void Callback_NewField(Core::System& system)
CallOnStateChangedCallbacks(Core::GetState());
}
}
#ifdef USE_RETRO_ACHIEVEMENTS
AchievementManager::GetInstance()->DoFrame();
#endif // USE_RETRO_ACHIEVEMENTS
}
void UpdateTitle()