Browse Source

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

Ariel Cabello 3 years ago
parent
commit
7d5df4f0ba
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/yuzu_cmd/yuzu.cpp

+ 1 - 1
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;