Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-08-03 14:28:57 +0000
committerStijn Buys <ingar@osirion.org>2008-08-03 14:28:57 +0000
commit5f58a9ced4c3a9f496da96d1910b5b1043eef8df (patch)
tree391625c479c6fe0f0cd174c6a98a0cb80a72baa6 /src/filesystem
parentd53bff0e774a179186d69a05e529cc29209ba4e0 (diff)
use 'home' instead of './home' on win32
Diffstat (limited to 'src/filesystem')
-rw-r--r--src/filesystem/filesystem.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filesystem/filesystem.cc b/src/filesystem/filesystem.cc
index 1cb13e9..0150b66 100644
--- a/src/filesystem/filesystem.cc
+++ b/src/filesystem/filesystem.cc
@@ -54,7 +54,7 @@ void init(std::string const & basename, std::string const & modname)
filesystem_homedir.append("/.osirion/");
#else
// FIXME win32
- filesystem_homedir.assign("./home/");
+ filesystem_homedir.assign("home/");
#endif
std::string current_datadir("data/");