mirror of https://github.com/PCSX2/pcsx2.git
QT: add the ability to load .backup save states in UI
This commit is contained in:
parent
0bdc4394aa
commit
b69cfad8ef
|
@ -2577,7 +2577,7 @@ void MainWindow::populateLoadStateMenu(QMenu* menu, const QString& filename, con
|
|||
|
||||
QAction* action = menu->addAction(is_right_click_menu ? tr("Load State File...") : tr("Load From File..."));
|
||||
connect(action, &QAction::triggered, [this, filename]() {
|
||||
const QString path(QFileDialog::getOpenFileName(this, tr("Select Save State File"), QString(), tr("Save States (*.p2s)")));
|
||||
const QString path(QFileDialog::getOpenFileName(this, tr("Select Save State File"), QString(), tr("Save States (*.p2s *.p2s.backup)")));
|
||||
if (path.isEmpty())
|
||||
return;
|
||||
|
||||
|
|
Loading…
Reference in New Issue