diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-07-08 03:32:29 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-07-08 03:32:29 -0400 |
commit | 8321cd29d63d9d54891510b34a25f243cf278882 (patch) | |
tree | f800191c465303bd20c70678747ab9a2f31ddad6 /platform.cpp | |
parent | 90076cf689bd241097d940b1f333d4898b0a9950 (diff) | |
download | abaddon-portaudio-8321cd29d63d9d54891510b34a25f243cf278882.tar.gz abaddon-portaudio-8321cd29d63d9d54891510b34a25f243cf278882.zip |
pick resources up from ~/.local/share/abaddon instead
Diffstat (limited to 'platform.cpp')
-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")) { |