From 9cdb6b1097ae18bb20f8d168b1aeb9beb31813ef Mon Sep 17 00:00:00 2001 From: squidbus <175574877+squidbus@users.noreply.github.com> Date: Fri, 12 Sep 2025 17:50:31 -0700 Subject: [PATCH] config: Fix typo saving logEnabled setting. (#3584) --- src/common/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/config.cpp b/src/common/config.cpp index 0d7251044..77ff08567 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -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);