Просмотр исходного кода

frontend_common: Don't specify default value for screenshot_path

t895 2 лет назад
Родитель
Сommit
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);
     ReadCategory(Settings::Category::Screenshots);
     FS::SetYuzuPath(FS::YuzuPath::ScreenshotsDir,
     FS::SetYuzuPath(FS::YuzuPath::ScreenshotsDir,
-                    ReadStringSetting(std::string("screenshot_path"),
-                                      FS::GetYuzuPathString(FS::YuzuPath::ScreenshotsDir)));
+                    ReadStringSetting(std::string("screenshot_path")));
 
 
     EndGroup();
     EndGroup();
 }
 }