diff options
| author | 2023-11-23 00:36:45 -0500 | |
|---|---|---|
| committer | 2023-11-23 00:36:45 -0500 | |
| commit | dda187d300de379abc4f4e17b5fd73a4eed8d956 (patch) | |
| tree | d403198ce2841c2134c10609a47aaa718e651ec0 /src/frontend_common/config.cpp | |
| parent | frontend_common: Don't load config files that we fail to open (diff) | |
| download | yuzu-dda187d300de379abc4f4e17b5fd73a4eed8d956.tar.gz yuzu-dda187d300de379abc4f4e17b5fd73a4eed8d956.tar.xz yuzu-dda187d300de379abc4f4e17b5fd73a4eed8d956.zip | |
frontend_common: Don't specify default value for screenshot_path
Diffstat (limited to 'src/frontend_common/config.cpp')
| -rw-r--r-- | src/frontend_common/config.cpp | 3 |
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() { | |||
| 342 | 342 | ||
| 343 | ReadCategory(Settings::Category::Screenshots); | 343 | ReadCategory(Settings::Category::Screenshots); |
| 344 | FS::SetYuzuPath(FS::YuzuPath::ScreenshotsDir, | 344 | FS::SetYuzuPath(FS::YuzuPath::ScreenshotsDir, |
| 345 | ReadStringSetting(std::string("screenshot_path"), | 345 | ReadStringSetting(std::string("screenshot_path"))); |
| 346 | FS::GetYuzuPathString(FS::YuzuPath::ScreenshotsDir))); | ||
| 347 | 346 | ||
| 348 | EndGroup(); | 347 | EndGroup(); |
| 349 | } | 348 | } |