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 df0f80f55c
commit c44d17b35d

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;