diff options
author | t895 <[email protected]> | 2023-11-23 00:36:45 -0500 |
---|---|---|
committer | t895 <[email protected]> | 2023-11-23 00:36:45 -0500 |
commit | dda187d300de379abc4f4e17b5fd73a4eed8d956 (patch) | |
tree | d403198ce2841c2134c10609a47aaa718e651ec0 /src | |
parent | 0b8218d8ebc07a17d94505068498014e9f61f6c9 (diff) | |
download | yuzu-mainline-dda187d300de379abc4f4e17b5fd73a4eed8d956.tar.gz yuzu-mainline-dda187d300de379abc4f4e17b5fd73a4eed8d956.zip |
frontend_common: Don't specify default value for screenshot_path
Diffstat (limited to 'src')
-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() { 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(); } |