diff options
-rw-r--r-- | platform.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform.cpp b/platform.cpp index e6338ff..df822cd 100644 --- a/platform.cpp +++ b/platform.cpp @@ -96,7 +96,7 @@ std::string Platform::FindResourceFolder() { static bool found = false; if (found) return found_path; - const static std::string home_path = std::getenv("HOME") + "/.config/abaddon"s; + const static std::string home_path = std::getenv("HOME") + "/.local/share/abaddon"s; for (const auto &path : { "."s, home_path, std::string(ABADDON_DEFAULT_RESOURCE_DIR) }) { if (IsFolder(path + "/res") && IsFolder(path + "/css")) { |