From 9369618b9c3b69aca83368ffd9a04a19c52898fd Mon Sep 17 00:00:00 2001 From: m Date: Sat, 3 Sep 2022 06:03:27 -0500 Subject: [PATCH] appdata folder to h1 --- src/client/component/updater.cpp | 4 +--- src/common/utils/properties.cpp | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/client/component/updater.cpp b/src/client/component/updater.cpp index 460008a7..6d765dfd 100644 --- a/src/client/component/updater.cpp +++ b/src/client/component/updater.cpp @@ -263,9 +263,7 @@ namespace updater if (!found) { -#ifdef DEBUG - console::info("[Updater] Found extra file %s\n", file.data()); -#endif + console::debug("[Updater] Found extra file %s\n", file.data()); if (file.ends_with(".ff")) { update_data.access([](update_data_t& data_) diff --git a/src/common/utils/properties.cpp b/src/common/utils/properties.cpp index 21926d0c..23ea77c3 100644 --- a/src/common/utils/properties.cpp +++ b/src/common/utils/properties.cpp @@ -18,7 +18,7 @@ namespace utils::properties CoTaskMemFree(path); }); - static auto appdata = std::filesystem::path(path) / "h2-mod"; + static auto appdata = std::filesystem::path(path) / "h1-mod"; return appdata; } }