summaryrefslogtreecommitdiff
path: root/src/yuzu/main.cpp
diff options
context:
space:
mode:
authorboludoz <francomaro@gmail.com>2023-10-16 18:59:21 -0300
committerboludoz <francomaro@gmail.com>2023-10-16 18:59:21 -0300
commit1ae0f0f3f64446b3128da0f1b1151d95739c9a6e (patch)
treeb92a7eb7d416d5db1aa1256067ccd7682b433d49 /src/yuzu/main.cpp
parentde0b35b97456313498785facccad5980cea737f7 (diff)
shortcut_stream.close(); fixed
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r--src/yuzu/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 54b36552d..e49de921c 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -2922,10 +2922,10 @@ bool GMainWindow::CreateShortcutLink(const std::filesystem::path& shortcut_path,
} else {
LOG_ERROR(Frontend, "Failed to create shortcut");
}
+ shortcut_stream.close();
} catch (const std::exception& e) {
LOG_ERROR(Frontend, "Failed to create shortcut: {}", e.what());
}
- shortcut_stream.close();
return false;
#elif defined(_WIN32) // Windows
HRESULT hr = CoInitialize(NULL);