diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/resources/resourcemanager.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -11,6 +11,8 @@ * src/being.cpp, src/being.h, src/engine.cpp, src/game.cpp, src/game.h, src/gui/gui.cpp, src/net/protocol.cpp: Added an action enumeration to the Being class and removed the old #define's. + * src/resources/resourcemanager.cpp: Fixed a location where a wrong + dir-separator was used. 2005-07-27 Bj�rn Lindeijer <bjorn@lindeijer.nl> diff --git a/src/resources/resourcemanager.cpp b/src/resources/resourcemanager.cpp index c757e35b..d58bf791 100644 --- a/src/resources/resourcemanager.cpp +++ b/src/resources/resourcemanager.cpp @@ -205,7 +205,7 @@ ResourceManager::searchAndAddArchives( if (len > ext.length() && !ext.compare((*i)+(len - ext.length()))) { std::string file, realPath, archive; - file = path + dirSep + (*i); + file = path + "/" + (*i); realPath = std::string(PHYSFS_getRealDir(file.c_str())); archive = realPath + path + dirSep + (*i); |