summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authort895 <clombardo169@gmail.com>2023-11-23 06:36:45 +0100
committert895 <clombardo169@gmail.com>2023-11-23 06:36:45 +0100
commitdda187d300de379abc4f4e17b5fd73a4eed8d956 (patch)
treed403198ce2841c2134c10609a47aaa718e651ec0
parentfrontend_common: Don't load config files that we fail to open (diff)
downloadyuzu-dda187d300de379abc4f4e17b5fd73a4eed8d956.tar
yuzu-dda187d300de379abc4f4e17b5fd73a4eed8d956.tar.gz
yuzu-dda187d300de379abc4f4e17b5fd73a4eed8d956.tar.bz2
yuzu-dda187d300de379abc4f4e17b5fd73a4eed8d956.tar.lz
yuzu-dda187d300de379abc4f4e17b5fd73a4eed8d956.tar.xz
yuzu-dda187d300de379abc4f4e17b5fd73a4eed8d956.tar.zst
yuzu-dda187d300de379abc4f4e17b5fd73a4eed8d956.zip
-rw-r--r--src/frontend_common/config.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/frontend_common/config.cpp b/src/frontend_common/config.cpp
index eae4fdc8e..7474cb0f9 100644
--- a/src/frontend_common/config.cpp
+++ b/src/frontend_common/config.cpp
@@ -342,8 +342,7 @@ void Config::ReadScreenshotValues() {
ReadCategory(Settings::Category::Screenshots);
FS::SetYuzuPath(FS::YuzuPath::ScreenshotsDir,
- ReadStringSetting(std::string("screenshot_path"),
- FS::GetYuzuPathString(FS::YuzuPath::ScreenshotsDir)));
+ ReadStringSetting(std::string("screenshot_path")));
EndGroup();
}