Skip to content

Commit

Permalink
properly display password off.
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilsss655 committed Jan 13, 2024
1 parent 7ca63de commit 6e8169c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ void UI_DisplayMenu(void)
case MENU_PASSWORD:
if (!gIsInSubMenu || gInputBoxIndex == 0)
{
if(gSubMenuSelection >= PASSWORD_OFF)
if((unsigned int)gSubMenuSelection >= PASSWORD_OFF)
{
sprintf(String, "OFF");
}
Expand Down

0 comments on commit 6e8169c

Please sign in to comment.