2026-09-25 11:32:34

Signed-off-by: lizzie <lizzie@eden-emu.dev>
This commit is contained in:
lizzie
2026-09-25 11:32:34 +00:00
parent 5dc15c6269
commit 3f35a08662
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -94,7 +94,7 @@ LaunchParams ParseLaunchParams(Core::System& system, int argc, char *argv[], wch
break;
case 'u': {
// Launch game with a specific user
bool argument_ok = isdigit(optarg[0]);
bool argument_ok = bool(isdigit(optarg[0]));
p.selected_user = atoi(optarg);
if (!argument_ok) {
// try to look it up by username, only finds the first username that matches.