appdata folder to h1

This commit is contained in:
m 2022-09-03 06:03:27 -05:00
parent e912552b4c
commit 9369618b9c
2 changed files with 2 additions and 4 deletions

View File

@ -263,9 +263,7 @@ namespace updater
if (!found) if (!found)
{ {
#ifdef DEBUG console::debug("[Updater] Found extra file %s\n", file.data());
console::info("[Updater] Found extra file %s\n", file.data());
#endif
if (file.ends_with(".ff")) if (file.ends_with(".ff"))
{ {
update_data.access([](update_data_t& data_) update_data.access([](update_data_t& data_)

View File

@ -18,7 +18,7 @@ namespace utils::properties
CoTaskMemFree(path); CoTaskMemFree(path);
}); });
static auto appdata = std::filesystem::path(path) / "h2-mod"; static auto appdata = std::filesystem::path(path) / "h1-mod";
return appdata; return appdata;
} }
} }