Stop disabling the screen when opening the config menu

This commit is contained in:
Maschell 2026-05-04 19:13:27 +02:00
parent a257c7f05c
commit 3fabf625c8

View File

@ -614,8 +614,6 @@ void DrawUtils::RenderScreen(const std::function<void()> &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<void()> &callback) {
}
}
FastMemset32(screenbuffer0, (COLOR_BACKGROUND).color, screen_buf0_size);
FastMemset32(screenbuffer1, (COLOR_BACKGROUND).color, screen_buf1_size);