Qt: Change the word “Save Slot” to “Load Slot” in Load State menu

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`.
This commit is contained in:
Ali Mahdavi 2022-06-15 22:39:31 +04:30 committed by lightningterror
parent 4ee92fc637
commit 90ca83bd96
1 changed files with 1 additions and 1 deletions

View File

@ -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); });
}
}