From a5c8a07dc64fa7d0d16f5f95f938af7b65e6794f Mon Sep 17 00:00:00 2001 From: Yuvaraj Date: Sun, 16 Feb 2014 13:21:14 +0530 Subject: [PATCH] App dir for Linux is the home directory. --- src/filesystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/filesystem.cpp b/src/filesystem.cpp index 9d33849..537706f 100644 --- a/src/filesystem.cpp +++ b/src/filesystem.cpp @@ -412,7 +412,7 @@ namespace fc { return fc::path( std::string(appdata) ); }(); #else - static fc::path appdir = home_dir(); + static fc::path appdir = home_path(); #endif return appdir; }