From 4bb1c17ce4e1899a07ebffe6fd99dc9a5315e019 Mon Sep 17 00:00:00 2001 From: Epicalert Date: Sun, 28 Feb 2021 14:09:49 +0800 Subject: [PATCH] Change custom prefix on Linux systems --- src/paths.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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/");