From 90ca83bd9616c0952a35884dc6ee04036a59634b Mon Sep 17 00:00:00 2001 From: Ali Mahdavi Date: Wed, 15 Jun 2022 22:39:31 +0430 Subject: [PATCH] =?UTF-8?q?Qt:=20Change=20the=20word=20=E2=80=9CSave=20Slo?= =?UTF-8?q?t=E2=80=9D=20to=20=E2=80=9CLoad=20Slot=E2=80=9D=20in=20Load=20S?= =?UTF-8?q?tate=20menu?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit First off, I must admit, I **HAVE NOT** compiled the project to see if my change breaks the whole thing or not. I just searched the entire repository for `Save Slot` and renamed the one related to `loadSaveStateSlot`. --- pcsx2-qt/MainWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2-qt/MainWindow.cpp b/pcsx2-qt/MainWindow.cpp index 9b70fd8672..937a4852e2 100644 --- a/pcsx2-qt/MainWindow.cpp +++ b/pcsx2-qt/MainWindow.cpp @@ -2078,7 +2078,7 @@ void MainWindow::populateLoadStateMenu(QMenu* menu, const QString& filename, con if (!FileSystem::StatFile(state_filename.c_str(), &sd)) continue; - action = menu->addAction(tr("Save Slot %1 (%2)").arg(i).arg(formatTimestampForSaveStateMenu(sd.ModificationTime))); + action = menu->addAction(tr("Load Slot %1 (%2)").arg(i).arg(formatTimestampForSaveStateMenu(sd.ModificationTime))); connect(action, &QAction::triggered, [this, i]() { loadSaveStateSlot(i); }); } }