From e2d0ff718cde237199e754d9421a559b319973d6 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Thu, 1 Jun 2023 22:01:54 -0400 Subject: [PATCH] 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. --- Source/Core/Core/Core.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index 1e940d1fed..514863b5f8 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -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()