From 75e6ef71d2d0ed0c3a8def0e78ee815eb96bfd0a Mon Sep 17 00:00:00 2001 From: Ahrimdon Date: Tue, 13 Aug 2024 22:54:04 -0400 Subject: [PATCH] maint(properties.cpp): streamline appdata path --- src/common/utils/properties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/utils/properties.cpp b/src/common/utils/properties.cpp index 8e5dd299..953f041c 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) / "auroramod/iw7-mod"; + static auto appdata = std::filesystem::path(path) / "iw7-mod"; return appdata; } }