From 7d5df4f0ba62acf1089c15bf30eacb385934f2ab Mon Sep 17 00:00:00 2001
From: Ariel Cabello <080ariel@gmail.com>
Date: Thu, 25 May 2023 20:07:52 +0200
Subject: [PATCH] Don't exit when using "-u" option in yuzu-cmd

---
 src/yuzu_cmd/yuzu.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;