Browse Source

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

Don't exit when using "-u" option in yuzu-cmd
pull/15/merge
liamwhite 3 years ago
committed by GitHub
parent
commit
a596c6e438
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/yuzu_cmd/yuzu.cpp

2
src/yuzu_cmd/yuzu.cpp

@ -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;

Loading…
Cancel
Save