summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/MainWindow.cpp
diff options
context:
space:
mode:
authorVampireFlower <monstercatspedup1@gmail.com>2025-11-03 18:50:56 -0500
committerVampireFlower <monstercatspedup1@gmail.com>2025-11-03 18:50:56 -0500
commit40fa9ddaddc264c8fd4fc348aef1c0621de6033b (patch)
tree8c1a8b796b203c9a07669dfe7e36bf1a58f36eaa /Source/Core/DolphinQt/MainWindow.cpp
parent9c28f19e56307ac4de750ffa6ffb8c4e15e55def (diff)
MainWindow: Change save state file filter to use *.s?? pattern
Diffstat (limited to 'Source/Core/DolphinQt/MainWindow.cpp')
-rw-r--r--Source/Core/DolphinQt/MainWindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp
index 55dcb321b8..d7a21da33e 100644
--- a/Source/Core/DolphinQt/MainWindow.cpp
+++ b/Source/Core/DolphinQt/MainWindow.cpp
@@ -1430,7 +1430,7 @@ void MainWindow::StateLoad()
QDir::currentPath() :
QString::fromStdString(Config::Get(Config::MAIN_CURRENT_STATE_PATH));
QString path = DolphinFileDialog::getOpenFileName(
- this, tr("Select a File"), dialog_path, tr("All Save States (*.sav *.s##);; All Files (*)"));
+ this, tr("Select a File"), dialog_path, tr("All Save States (*.sav *.s??);; All Files (*)"));
Config::SetBase(Config::MAIN_CURRENT_STATE_PATH, QFileInfo(path).dir().path().toStdString());
if (!path.isEmpty())
State::LoadAs(m_system, path.toStdString());
@@ -1442,7 +1442,7 @@ void MainWindow::StateSave()
QDir::currentPath() :
QString::fromStdString(Config::Get(Config::MAIN_CURRENT_STATE_PATH));
QString path = DolphinFileDialog::getSaveFileName(
- this, tr("Select a File"), dialog_path, tr("All Save States (*.sav *.s##);; All Files (*)"));
+ this, tr("Select a File"), dialog_path, tr("All Save States (*.sav *.s??);; All Files (*)"));
Config::SetBase(Config::MAIN_CURRENT_STATE_PATH, QFileInfo(path).dir().path().toStdString());
if (!path.isEmpty())
State::SaveAs(m_system, path.toStdString());