config: Fix typo saving logEnabled setting. (#3584)

This commit is contained in:
squidbus
2025-09-12 17:50:31 -07:00
committed by GitHub
parent 698458061e
commit 9cdb6b1097

View File

@@ -1032,7 +1032,7 @@ void save(const std::filesystem::path& path, bool is_game_specific) {
isShaderDebug.setTomlValue(data, "Debug", "CollectShader", is_game_specific);
isSeparateLogFilesEnabled.setTomlValue(data, "Debug", "isSeparateLogFilesEnabled",
is_game_specific);
logEnabled.setTomlValue(data, "Debug", "logEnable", is_game_specific);
logEnabled.setTomlValue(data, "Debug", "logEnabled", is_game_specific);
m_language.setTomlValue(data, "Settings", "consoleLanguage", is_game_specific);