diff --git a/src/common/config.cpp b/src/common/config.cpp index 92fe04185..491d3c747 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -556,7 +556,7 @@ void load(const std::filesystem::path& path) { const toml::value& general = data.at("General"); // isNeo = toml::find_or(general, "isPS4Pro", false); - isNeo = false; + isNeo = toml::find_or(general, "isPS4Pro-temp", false); isFullscreen = toml::find_or(general, "Fullscreen", false); playBGM = toml::find_or(general, "playBGM", false); isTrophyPopupDisabled = toml::find_or(general, "isTrophyPopupDisabled", false); @@ -676,7 +676,8 @@ void save(const std::filesystem::path& path) { fmt::print("Saving new configuration file {}\n", fmt::UTF(path.u8string())); } - data["General"]["isPS4Pro"] = isNeo; + // data["General"]["isPS4Pro"] = isNeo; + data["General"]["isPS4Pro-temp"] = isNeo; data["General"]["Fullscreen"] = isFullscreen; data["General"]["isTrophyPopupDisabled"] = isTrophyPopupDisabled; data["General"]["playBGM"] = playBGM;