From 1f7247c86156a13b93e372a51ec84a9697a4a619 Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Sat, 9 Nov 2024 22:02:57 +0000 Subject: [PATCH] lime_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/lime_qt/lime_qt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lime_qt/lime_qt.cpp b/src/lime_qt/lime_qt.cpp index b5f25f035..169aafc72 100644 --- a/src/lime_qt/lime_qt.cpp +++ b/src/lime_qt/lime_qt.cpp @@ -2121,7 +2121,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; }