Skip to content

Commit

Permalink
fix: invisible 4 players menu text
Browse files Browse the repository at this point in the history
  • Loading branch information
RodrigoDornelles committed Nov 1, 2023
1 parent d70bcff commit 3d6c977
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/screen.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ void screen_menu()
vram_adr(NTADR_A(11,17));
vram_write(jp? I18N_JP_2_PLAYERS: I18N_EN_2_PLAYERS, 9);
#endif
#if MAX_PLAYERS > 3
#if MAX_PLAYERS >= 3
vram_adr(NTADR_A(11,18));
vram_write(jp? I18N_JP_3_PLAYERS: I18N_EN_3_PLAYERS, 9);
#endif
#if MAX_PLAYERS > 4
#if MAX_PLAYERS >= 4
vram_adr(NTADR_A(11,19));
vram_write(jp? I18N_JP_4_PLAYERS: I18N_EN_4_PLAYERS, 9);
#endif
Expand Down

0 comments on commit 3d6c977

Please sign in to comment.