Skip to content

Commit

Permalink
TWLMenu++ Splash: Fix GBC icon sometimes appearing corrupted
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Nov 19, 2024
1 parent 1f04a77 commit eaf5d53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions title/arm9/source/graphics/graphics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ void SetBrightness(u8 screen, s8 bright) {
} */

void vBlankHandler() {
if (fadeType == true) {
if (fadeType) {
screenBrightness--;
if (screenBrightness < 0) screenBrightness = 0;
} else {
Expand Down Expand Up @@ -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();
}

0 comments on commit eaf5d53

Please sign in to comment.