Fixed g_path_local definition on Travis.

This commit is contained in:
Oliver Hamlet
2015-07-12 18:37:31 +01:00
parent d41c2760e7
commit 1ba46f5853
+1 -1
View File
@@ -41,7 +41,7 @@ namespace loot {
#ifdef _WIN32
const boost::filesystem::path g_path_local = GetLocalAppDataPath() / "LOOT";
#else
const boost::filesystem::path g_path_local = boost::filesystem::current_path();
const boost::filesystem::path g_path_local = boost::filesystem::current_path() / "LOOT";
#endif
const boost::filesystem::path g_path_settings = g_path_local / "settings.yaml";
const boost::filesystem::path g_path_log = g_path_local / "LOOTDebugLog.txt";