From 3fabf625c8f3ee173915db91c2591e02c1be616f Mon Sep 17 00:00:00 2001 From: Maschell Date: Mon, 4 May 2026 19:13:27 +0200 Subject: [PATCH] Stop disabling the screen when opening the config menu --- source/utils/DrawUtils.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/source/utils/DrawUtils.cpp b/source/utils/DrawUtils.cpp index 0456e41..1ed4e3a 100644 --- a/source/utils/DrawUtils.cpp +++ b/source/utils/DrawUtils.cpp @@ -614,8 +614,6 @@ void DrawUtils::RenderScreen(const std::function &callback) { auto drcPitch2 = DCReadReg32(SCREEN_DRC, D1OVL_PITCH_REG); OSScreenInit(); - OSScreenEnableEx(SCREEN_TV, 0); - OSScreenEnableEx(SCREEN_DRC, 0); uint32_t screen_buf0_size = OSScreenGetBufferSizeEx(SCREEN_TV); uint32_t screen_buf1_size = OSScreenGetBufferSizeEx(SCREEN_DRC); @@ -647,7 +645,6 @@ void DrawUtils::RenderScreen(const std::function &callback) { } } - FastMemset32(screenbuffer0, (COLOR_BACKGROUND).color, screen_buf0_size); FastMemset32(screenbuffer1, (COLOR_BACKGROUND).color, screen_buf1_size);