From acd719448e1fc4f439e731c221d848e904daa555 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Sat, 30 Dec 2023 15:18:56 +0100 Subject: [PATCH] Wrap g_Config.bRunBehindPauseMenu behind a function, so we can add conditions --- Core/Core.cpp | 4 ++++ Core/Core.h | 2 ++ UI/EmuScreen.cpp | 6 +++--- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Core/Core.cpp b/Core/Core.cpp index ef7ca4e94d..8f91a41a4c 100644 --- a/Core/Core.cpp +++ b/Core/Core.cpp @@ -102,6 +102,10 @@ void Core_Stop() { } } +bool Core_ShouldRunBehind() { + return g_Config.bRunBehindPauseMenu; +} + bool Core_IsStepping() { return coreState == CORE_STEPPING || coreState == CORE_POWERDOWN; } diff --git a/Core/Core.h b/Core/Core.h index 42caf85996..dfa7a41a42 100644 --- a/Core/Core.h +++ b/Core/Core.h @@ -37,6 +37,8 @@ void Core_SetGraphicsContext(GraphicsContext *ctx); // called from gui void Core_EnableStepping(bool step, const char *reason = nullptr, u32 relatedAddress = 0); +bool Core_ShouldRunBehind(); + bool Core_NextFrame(); void Core_DoSingleStep(); void Core_UpdateSingleStep(); diff --git a/UI/EmuScreen.cpp b/UI/EmuScreen.cpp index 92a62d95a9..e9b95e2e29 100644 --- a/UI/EmuScreen.cpp +++ b/UI/EmuScreen.cpp @@ -1448,11 +1448,11 @@ static void DrawFPS(UIContext *ctx, const Bounds &bounds) { bool EmuScreen::canBeBackground(bool isTop) const { if (g_Config.bSkipBufferEffects) { - return isTop || (g_Config.bTransparentBackground && g_Config.bRunBehindPauseMenu); + return isTop || (g_Config.bTransparentBackground && Core_ShouldRunBehind()); } if (!g_Config.bTransparentBackground && !isTop) { - if (g_Config.bRunBehindPauseMenu || screenManager()->topScreen()->wantBrightBackground()) + if (Core_ShouldRunBehind() || screenManager()->topScreen()->wantBrightBackground()) return true; return false; } @@ -1513,7 +1513,7 @@ ScreenRenderFlags EmuScreen::render(ScreenRenderMode mode) { if (mode & ScreenRenderMode::TOP) { System_Notify(SystemNotification::KEEP_SCREEN_AWAKE); - } else if (!g_Config.bRunBehindPauseMenu && strcmp(screenManager()->topScreen()->tag(), "DevMenu") != 0) { + } else if (!Core_ShouldRunBehind() && strcmp(screenManager()->topScreen()->tag(), "DevMenu") != 0) { // Not on top. Let's not execute, only draw the image. draw->BindFramebufferAsRenderTarget(nullptr, { RPAction::CLEAR, RPAction::DONT_CARE, RPAction::DONT_CARE }, "EmuScreen_Stepping"); // Just to make sure.