Unix/Savestates: Fix savestates destination

This commit is contained in:
Elad Ashkenazi 2024-06-01 21:15:02 +03:00
parent ba29a37871
commit 4f1db9a00f
2 changed files with 4 additions and 4 deletions

View file

@ -620,7 +620,7 @@ void main_window::BootSavestate()
stopped = true;
}
const QString file_path = QFileDialog::getOpenFileName(this, tr("Select Savestate To Boot"), qstr(fs::get_cache_dir() + "savestates/"), tr(
const QString file_path = QFileDialog::getOpenFileName(this, tr("Select Savestate To Boot"), qstr(fs::get_config_dir() + "savestates/"), tr(
"Savestate files (*.SAVESTAT *.SAVESTAT.zst *.SAVESTAT.gz);;"
"All files (*.*)"),
Q_NULLPTR, QFileDialog::DontResolveSymlinks);