diff options
Diffstat (limited to 'src/resources/resourcemanager.cpp')
-rw-r--r-- | src/resources/resourcemanager.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/resources/resourcemanager.cpp b/src/resources/resourcemanager.cpp index 3567ac35..39b8dfff 100644 --- a/src/resources/resourcemanager.cpp +++ b/src/resources/resourcemanager.cpp @@ -113,13 +113,6 @@ bool ResourceManager::isDirectory(const std::string &path) return PHYSFS_isDirectory(path.c_str()); } -std::string ResourceManager::getRealPath(const std::string &path) -{ - const char *dirSep = PHYSFS_getDirSeparator(); - - return std::string(PHYSFS_getRealDir(path.c_str())) + dirSep + path; -} - Resource* ResourceManager::get(const E_RESOURCE_TYPE &type, const std::string &idPath) { |