summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorouwou <26526779+ouwou@users.noreply.github.com>2021-07-08 03:32:29 -0400
committerouwou <26526779+ouwou@users.noreply.github.com>2021-07-08 03:32:29 -0400
commit8321cd29d63d9d54891510b34a25f243cf278882 (patch)
treef800191c465303bd20c70678747ab9a2f31ddad6
parent90076cf689bd241097d940b1f333d4898b0a9950 (diff)
downloadabaddon-portaudio-8321cd29d63d9d54891510b34a25f243cf278882.tar.gz
abaddon-portaudio-8321cd29d63d9d54891510b34a25f243cf278882.zip
pick resources up from ~/.local/share/abaddon instead
-rw-r--r--platform.cpp2
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")) {