summaryrefslogtreecommitdiff
path: root/src/yuzu/main.cpp
diff options
context:
space:
mode:
authorboludoz <francomaro@gmail.com>2023-10-16 16:54:51 -0300
committerboludoz <francomaro@gmail.com>2023-10-16 16:54:51 -0300
commitde0b35b97456313498785facccad5980cea737f7 (patch)
treee45029eb07569211857318ec40b8f0166a2761c4 /src/yuzu/main.cpp
parentae88d01d8dfc9c39206d3fb37938e44a3480c70f (diff)
Comment using fmt instead qt.
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r--src/yuzu/main.cpp3
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
this, GMainWindow::CREATE_SHORTCUT_MSGBOX_FULLSCREEN_YES, qt_game_title)) {
arguments = "-f " + arguments;
}
- const std::string comment =
- tr("Start %1 with the yuzu Emulator").arg(qt_game_title).toStdString();
+ const std::string comment = fmt::format("Start {:s} with the yuzu Emulator", game_title);
const std::string categories = "Game;Emulator;Qt;";
const std::string keywords = "Switch;Nintendo;";