Don't exit when using "-u" option in yuzu-cmd

This commit is contained in:
Ariel Cabello 2023-05-25 20:07:52 +02:00
parent d33bdc97d0
commit 7d5df4f0ba

View File

@ -283,7 +283,7 @@ int main(int argc, char** argv) {
break; break;
case 'u': case 'u':
selected_user = atoi(optarg); selected_user = atoi(optarg);
return 0; break;
case 'v': case 'v':
PrintVersion(); PrintVersion();
return 0; return 0;