|
From: Lasse Kärkkäi. <tr...@us...> - 2010-01-14 02:05:44
|
Module: performous
Branch: master
Commit: 2d78ab0723dd818f1f029c3849181f1c4c6754a3
Author: Lasse Karkkainen <tro...@tr...>
Date: Thu Jan 14 04:00:55 2010 +0200
Cleanup
---
game/fs.cc | 7 +------
1 files changed, 1 insertions(+), 6 deletions(-)
diff --git a/game/fs.cc b/game/fs.cc
index 9e4f665..f5d0751 100644
--- a/game/fs.cc
+++ b/game/fs.cc
@@ -113,12 +113,7 @@ Paths const& getPaths(bool refresh) {
fs::path shareDir = SHARED_DATA_DIR;
Paths dirs;
#ifdef _WIN32
- // Add APPLIC~1 (user-specific application data) FIXME: Not tested
- {
- //char const* appdata = getenv("APPDATA");
- //if (appdata) dirs.push_back(appdata / shortDir);
- dirs.push_back(getConfigDir());
- }
+ dirs.push_back(getConfigDir()); // APPDATA/performous
#else
// Adding XDG_DATA_HOME
{
|