We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3315e96 commit 67b5da6Copy full SHA for 67b5da6
retroarch.c
@@ -3465,7 +3465,7 @@ bool command_event(enum event_command cmd, void *data)
3465
/* Kiosk Mode Fix */
3466
case CMD_EVENT_KIOSK:
3467
/* If were already in Kiosk Mode, ask for the Password! */
3468
- if (settings->bools.kiosk_mode_enable && settings->paths.kiosk_mode_password != "")
+ if (settings->bools.kiosk_mode_enable && !string_is_empty(settings->paths.kiosk_mode_password))
3469
{
3470
menu_input_ctx_line_t line;
3471
line.label = msg_hash_to_str(MENU_ENUM_LABEL_VALUE_MENU_KIOSK_MODE_PASSWORD);
0 commit comments