diff options
| author | 2021-02-12 17:21:44 -0500 | |
|---|---|---|
| committer | 2021-02-12 17:26:01 -0500 | |
| commit | dcc0617cc2d5b0fd3ebfa42b66721bf9e575dd11 (patch) | |
| tree | a074c97b06059a16329f6eb7923e591e07a2fd7a /src | |
| parent | Merge pull request #5902 from lioncash/core-warn (diff) | |
| download | yuzu-dcc0617cc2d5b0fd3ebfa42b66721bf9e575dd11.tar.gz yuzu-dcc0617cc2d5b0fd3ebfa42b66721bf9e575dd11.tar.xz yuzu-dcc0617cc2d5b0fd3ebfa42b66721bf9e575dd11.zip | |
yuzu: Create screenshot path before capture
Allows screenshots in cases where the screenshots path doesn't already
exist.
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/main.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 52218eb70..28a52a56c 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -2490,6 +2490,11 @@ void GMainWindow::OnCaptureScreenshot() { | |||
| 2490 | .arg(title_id, 16, 16, QLatin1Char{'0'}) | 2490 | .arg(title_id, 16, 16, QLatin1Char{'0'}) |
| 2491 | .arg(date); | 2491 | .arg(date); |
| 2492 | 2492 | ||
| 2493 | if (!Common::FS::CreateDir(screenshot_path.toStdString())) { | ||
| 2494 | OnStartGame(); | ||
| 2495 | return; | ||
| 2496 | } | ||
| 2497 | |||
| 2493 | #ifdef _WIN32 | 2498 | #ifdef _WIN32 |
| 2494 | if (UISettings::values.enable_screenshot_save_as) { | 2499 | if (UISettings::values.enable_screenshot_save_as) { |
| 2495 | filename = QFileDialog::getSaveFileName(this, tr("Capture Screenshot"), filename, | 2500 | filename = QFileDialog::getSaveFileName(this, tr("Capture Screenshot"), filename, |