From 3e02c292259ac7b9f8f124f87df286284ca45f64 Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Sat, 9 Nov 2024 22:02:57 +0000 Subject: [PATCH] citra_qt: Fixed desktop shortcuts incorrectly including `-g` This argument has a new meaning since the frontend merge, and is no longer needed in this instance --- src/citra_qt/citra_qt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/citra_qt/citra_qt.cpp b/src/citra_qt/citra_qt.cpp index 33f0b860a..b393c19d1 100644 --- a/src/citra_qt/citra_qt.cpp +++ b/src/citra_qt/citra_qt.cpp @@ -2061,7 +2061,7 @@ void GMainWindow::OnGameListCreateShortcut(u64 program_id, const std::string& ga } #endif // __linux__ // Create shortcut - std::string arguments = fmt::format("-g \"{:s}\"", game_path); + std::string arguments = fmt::format("\"{:s}\"", game_path); if (CreateShortcutMessagesGUI(this, CREATE_SHORTCUT_MSGBOX_FULLSCREEN_PROMPT, qt_game_title)) { arguments = "-f " + arguments; }