diff options
| author | 2023-08-15 23:07:49 -0400 | |
|---|---|---|
| committer | 2023-08-15 23:07:49 -0400 | |
| commit | 227950ac99dcea16c9eebbdab93d3c1e2f24a894 (patch) | |
| tree | 627b551779da7af9c2d2c680deac088affaf2b1b | |
| parent | bootmanager: Consider the default resolution (diff) | |
| download | yuzu-227950ac99dcea16c9eebbdab93d3c1e2f24a894.tar.gz yuzu-227950ac99dcea16c9eebbdab93d3c1e2f24a894.tar.xz yuzu-227950ac99dcea16c9eebbdab93d3c1e2f24a894.zip | |
config: Read the entire screenshots category
Diffstat (limited to '')
| -rw-r--r-- | src/yuzu/configuration/config.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/configuration/config.cpp b/src/yuzu/configuration/config.cpp index b2405f9b8..b22c83303 100644 --- a/src/yuzu/configuration/config.cpp +++ b/src/yuzu/configuration/config.cpp | |||
| @@ -592,8 +592,7 @@ void Config::ReadRendererValues() { | |||
| 592 | void Config::ReadScreenshotValues() { | 592 | void Config::ReadScreenshotValues() { |
| 593 | qt_config->beginGroup(QStringLiteral("Screenshots")); | 593 | qt_config->beginGroup(QStringLiteral("Screenshots")); |
| 594 | 594 | ||
| 595 | UISettings::values.enable_screenshot_save_as = | 595 | ReadCategory(Settings::Category::Screenshots); |
| 596 | ReadSetting(QStringLiteral("enable_screenshot_save_as"), true).toBool(); | ||
| 597 | FS::SetYuzuPath( | 596 | FS::SetYuzuPath( |
| 598 | FS::YuzuPath::ScreenshotsDir, | 597 | FS::YuzuPath::ScreenshotsDir, |
| 599 | qt_config | 598 | qt_config |