diff --git a/src/core/fullscreen_ui.cpp b/src/core/fullscreen_ui.cpp index 5ff4b899d..188f40881 100644 --- a/src/core/fullscreen_ui.cpp +++ b/src/core/fullscreen_ui.cpp @@ -7160,6 +7160,7 @@ TRANSLATE_NOOP("FullscreenUI", "Shows persistent icons when turbo is active or w TRANSLATE_NOOP("FullscreenUI", "Shows the current controller state of the system in the bottom-left corner of the display."); TRANSLATE_NOOP("FullscreenUI", "Shows the current emulation speed of the system in the top-right corner of the display as a percentage."); TRANSLATE_NOOP("FullscreenUI", "Shows the current rendering resolution of the system in the top-right corner of the display."); +TRANSLATE_NOOP("FullscreenUI", "Shows the game you are currently playing as part of your profile in Discord."); TRANSLATE_NOOP("FullscreenUI", "Shows the host's CPU usage based on threads in the top-right corner of the display."); TRANSLATE_NOOP("FullscreenUI", "Shows the host's GPU usage in the top-right corner of the display."); TRANSLATE_NOOP("FullscreenUI", "Shows the number of frames (or v-syncs) displayed per second by the system in the top-right corner of the display."); diff --git a/src/core/system.cpp b/src/core/system.cpp index f91e5199d..5d3e93972 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -3964,6 +3964,7 @@ void System::DoRewind() InvalidateDisplay(); Host::PumpMessagesOnCPUThread(); + Internal::IdlePollUpdate(); Throttle(); }