From eaf5d53b9a13d40ec7f32b804ba88d9260b45148 Mon Sep 17 00:00:00 2001 From: RocketRobz Date: Mon, 18 Nov 2024 17:43:04 -0700 Subject: [PATCH] TWLMenu++ Splash: Fix GBC icon sometimes appearing corrupted --- title/arm9/source/graphics/graphics.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/title/arm9/source/graphics/graphics.cpp b/title/arm9/source/graphics/graphics.cpp index 1d69555a3a..c140df9212 100644 --- a/title/arm9/source/graphics/graphics.cpp +++ b/title/arm9/source/graphics/graphics.cpp @@ -81,7 +81,7 @@ void SetBrightness(u8 screen, s8 bright) { } */ void vBlankHandler() { - if (fadeType == true) { + if (fadeType) { screenBrightness--; if (screenBrightness < 0) screenBrightness = 0; } else { @@ -255,8 +255,8 @@ void loadTitleGraphics() { toncset16(BG_PALETTE, 0, 256); toncset16(BG_PALETTE_SUB, 0, 256); - twlMenuVideo_loadTopGraphics(); - // Display TWiLightMenu++ logo LoadBMP(); + + twlMenuVideo_loadTopGraphics(); } \ No newline at end of file