소스 검색

frontend_common: Don't specify default value for screenshot_path

t895 2 년 전
부모
커밋
dda187d300
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      src/frontend_common/config.cpp

+ 1 - 2
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();
 }