diff options
Diffstat (limited to 'src/resources/resourcemanager.cpp')
-rw-r--r-- | src/resources/resourcemanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |