From 32ffc1e566e0f3bd9d2232aae0ae5e4d37e536c0 Mon Sep 17 00:00:00 2001 From: kalaposfos13 <153381648+kalaposfos13@users.noreply.github.com> Date: Fri, 31 Jan 2025 14:47:40 +0100 Subject: [PATCH] Change config directory name again to conform to project standards --- 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 915365c1b..ac96d3dc9 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -993,7 +993,7 @@ std::filesystem::path GetFoolproofKbmConfigFile(const std::string& game_id) { // If that doesn't exist either, generate that from getDefaultConfig() and try again // If even the folder is missing, we start with that. - const auto config_dir = Common::FS::GetUserPath(Common::FS::PathType::UserDir) / "inputConfig"; + const auto config_dir = Common::FS::GetUserPath(Common::FS::PathType::UserDir) / "input_config"; const auto config_file = config_dir / (game_id + ".ini"); const auto default_config_file = config_dir / "default.ini";