diff options
| author | 2023-10-16 16:54:51 -0300 | |
|---|---|---|
| committer | 2023-10-16 16:54:51 -0300 | |
| commit | de0b35b97456313498785facccad5980cea737f7 (patch) | |
| tree | e45029eb07569211857318ec40b8f0166a2761c4 /src | |
| parent | .clear() instead = ""; and switch improved. (diff) | |
| download | yuzu-de0b35b97456313498785facccad5980cea737f7.tar.gz yuzu-de0b35b97456313498785facccad5980cea737f7.tar.xz yuzu-de0b35b97456313498785facccad5980cea737f7.zip | |
Comment using fmt instead qt.
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 82b38fc07..54b36552d 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -3156,8 +3156,7 @@ void GMainWindow::OnGameListCreateShortcut(u64 program_id, const std::string& ga | |||
| 3156 | this, GMainWindow::CREATE_SHORTCUT_MSGBOX_FULLSCREEN_YES, qt_game_title)) { | 3156 | this, GMainWindow::CREATE_SHORTCUT_MSGBOX_FULLSCREEN_YES, qt_game_title)) { |
| 3157 | arguments = "-f " + arguments; | 3157 | arguments = "-f " + arguments; |
| 3158 | } | 3158 | } |
| 3159 | const std::string comment = | 3159 | const std::string comment = fmt::format("Start {:s} with the yuzu Emulator", game_title); |
| 3160 | tr("Start %1 with the yuzu Emulator").arg(qt_game_title).toStdString(); | ||
| 3161 | const std::string categories = "Game;Emulator;Qt;"; | 3160 | const std::string categories = "Game;Emulator;Qt;"; |
| 3162 | const std::string keywords = "Switch;Nintendo;"; | 3161 | const std::string keywords = "Switch;Nintendo;"; |
| 3163 | 3162 | ||