From 31d9dbfd91c5eeb064d8d5b8ae3c547f6fb9cda9 Mon Sep 17 00:00:00 2001 From: akrieger Date: Sat, 17 Sep 2022 22:16:03 -0700 Subject: [PATCH] Fix typo in USE_XDG_DIR block for set_standard_filenames Co-authored-by: andrei <68240139+andrei8l@users.noreply.github.com> --- src/path_info.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/path_info.cpp b/src/path_info.cpp index 4743c239d3645..6079b33dc4133 100644 --- a/src/path_info.cpp +++ b/src/path_info.cpp @@ -149,7 +149,7 @@ void PATH_INFO::set_standard_filenames() dir = std::string( user_dir ) + "/.config/cataclysm-dda/"; } config_dir_value = dir; - config_dir_path_value = cata_path{ cata_path::rootpath::config, fs::path{} }; + config_dir_path_value = cata_path{ cata_path::root_path::config, fs::path{} }; #else config_dir_value = user_dir_value + "config/"; config_dir_path_value = user_dir_path_value / "config";