diff --git a/src/paths.cpp b/src/paths.cpp index 9b46c2f..e1ef84c 100644 --- a/src/paths.cpp +++ b/src/paths.cpp @@ -14,7 +14,7 @@ std::string prefixDefault; void initPrefixes() { #if defined (__gnu_linux__) - prefixCustom = getenv("HOME") + std::string("/.local/facecam2d/"); + prefixCustom = getenv("HOME") + std::string("/.local/share/facecam2d/"); prefixDefault = "/usr/share/facecam2d/"; #elif defined (__APPLE__) prefixCustom = getenv("HOME") + std::string("/Library/Facecam2D/");