diff options
author | Stijn Buys <ingar@osirion.org> | 2008-08-03 14:28:57 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-08-03 14:28:57 +0000 |
commit | 5f58a9ced4c3a9f496da96d1910b5b1043eef8df (patch) | |
tree | 391625c479c6fe0f0cd174c6a98a0cb80a72baa6 /src/filesystem | |
parent | d53bff0e774a179186d69a05e529cc29209ba4e0 (diff) |
use 'home' instead of './home' on win32
Diffstat (limited to 'src/filesystem')
-rw-r--r-- | src/filesystem/filesystem.cc | 2 |
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/"); |