summaryrefslogtreecommitdiff
path: root/src/yuzu_cmd
diff options
context:
space:
mode:
authorAriel Cabello <080ariel@gmail.com>2023-05-25 20:07:52 +0200
committerAriel Cabello <080ariel@gmail.com>2023-05-25 20:07:52 +0200
commit7d5df4f0ba62acf1089c15bf30eacb385934f2ab (patch)
tree96714cb9abb375d8bb470990ecac3e7cd910ab78 /src/yuzu_cmd
parentd33bdc97d070788af8f6ae979fd48383f90b6a52 (diff)
Don't exit when using "-u" option in yuzu-cmd
Diffstat (limited to 'src/yuzu_cmd')
-rw-r--r--src/yuzu_cmd/yuzu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp
index ca5ce0f53..7b6d49c63 100644
--- a/src/yuzu_cmd/yuzu.cpp
+++ b/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;