mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-07 08:29:59 +00:00
Merge pull request #5915 from lat9nq/screenshots-dir-fix
yuzu: Create screenshot path before capture
This commit is contained in:
commit
710aa22f7c
1 changed files with 5 additions and 0 deletions
|
@ -2490,6 +2490,11 @@ void GMainWindow::OnCaptureScreenshot() {
|
|||
.arg(title_id, 16, 16, QLatin1Char{'0'})
|
||||
.arg(date);
|
||||
|
||||
if (!Common::FS::CreateDir(screenshot_path.toStdString())) {
|
||||
OnStartGame();
|
||||
return;
|
||||
}
|
||||
|
||||
#ifdef _WIN32
|
||||
if (UISettings::values.enable_screenshot_save_as) {
|
||||
filename = QFileDialog::getSaveFileName(this, tr("Capture Screenshot"), filename,
|
||||
|
|
Loading…
Reference in a new issue