Merge pull request #10454 from 521337/fix-u-option

Don't exit when using "-u" option in yuzu-cmd
This commit is contained in:
liamwhite 2023-05-25 14:12:51 -04:00 committed by GitHub
commit a596c6e438
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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