From b54398a3aa2fc06bfeaf88f73070a3c08da4bf32 Mon Sep 17 00:00:00 2001 From: Sean Maas Date: Tue, 28 May 2024 02:42:35 -0400 Subject: [PATCH] Wii U: fix GBA crop in single screen mode --- src/console/main_wiiu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/console/main_wiiu.cpp b/src/console/main_wiiu.cpp index 0e95c48..b6cf2ae 100644 --- a/src/console/main_wiiu.cpp +++ b/src/console/main_wiiu.cpp @@ -206,7 +206,7 @@ void ConsoleUI::drawTexture(void *texture, float tx, float ty, float tw, float t // Override the gamepad screen texture with the other screen in single screen mode GX2Texture *tempTexture = nullptr; - if (running && tw >= 240 && ScreenLayout::screenArrangement == 3) + if (running && tw >= 240 && !(ConsoleUI::gbaMode && ScreenLayout::gbaCrop) && ScreenLayout::screenArrangement == 3) { int shift = Settings::highRes3D; uint32_t *data = &ConsoleUI::framebuffer[(256 * 192 * (ScreenLayout::screenSizing < 2)) << (shift * 2)];