From 8476e373fa810b2c01bdfa192d1dbeb945babf7f Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sat, 26 Sep 2020 01:10:40 +1000 Subject: [PATCH] Qt: Simplify load game state string --- src/duckstation-qt/qthostinterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/duckstation-qt/qthostinterface.cpp b/src/duckstation-qt/qthostinterface.cpp index fcb7184d4..8a59d478e 100644 --- a/src/duckstation-qt/qthostinterface.cpp +++ b/src/duckstation-qt/qthostinterface.cpp @@ -905,7 +905,7 @@ void QtHostInterface::populateGameListContextMenu(const char* game_code, QWidget else { load_state_menu->setEnabled(true); - action = load_state_menu->addAction(tr("%1 Save %2 (%3)").arg(tr("Game")).arg(slot).arg(timestamp_str)); + action = load_state_menu->addAction(tr("Game Save %1 (%2)").arg(slot).arg(timestamp_str)); } connect(action, &QAction::triggered, [this, path]() { loadState(path); });