Skip to content

Commit

Permalink
lime_qt: Fixed desktop shortcuts incorrectly including -g
Browse files Browse the repository at this point in the history
This argument has a new meaning since the frontend merge, and is no longer needed in this instance
  • Loading branch information
OpenSauce04 committed Nov 9, 2024
1 parent 7d2911a commit 1f7247c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lime_qt/lime_qt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 1f7247c

Please sign in to comment.