summaryrefslogtreecommitdiff
path: root/src/game-server/resourcemanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game-server/resourcemanager.cpp')
-rw-r--r--src/game-server/resourcemanager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game-server/resourcemanager.cpp b/src/game-server/resourcemanager.cpp
index 9a4b2a08..1eb8cba8 100644
--- a/src/game-server/resourcemanager.cpp
+++ b/src/game-server/resourcemanager.cpp
@@ -111,12 +111,12 @@ void ResourceManager::initialize()
#endif
}
-bool ResourceManager::exists(std::string const &path)
+bool ResourceManager::exists(const std::string &path)
{
return PHYSFS_exists(path.c_str());
}
-char *ResourceManager::loadFile(std::string const &fileName, int &fileSize)
+char *ResourceManager::loadFile(const std::string &fileName, int &fileSize)
{
// Attempt to open the specified file using PhysicsFS
PHYSFS_file* file = PHYSFS_openRead(fileName.c_str());