summaryrefslogtreecommitdiff
path: root/src/resources/resourcemanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/resourcemanager.cpp')
-rw-r--r--src/resources/resourcemanager.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/resources/resourcemanager.cpp b/src/resources/resourcemanager.cpp
index 3ba99d248..0c1dafe4b 100644
--- a/src/resources/resourcemanager.cpp
+++ b/src/resources/resourcemanager.cpp
@@ -199,7 +199,7 @@ void ResourceManager::cleanOrphans()
bool ResourceManager::setWriteDir(const std::string &path)
{
- return (bool) PHYSFS_setWriteDir(path.c_str());
+ return static_cast<bool>(PHYSFS_setWriteDir(path.c_str()));
}
bool ResourceManager::addToSearchPath(const std::string &path, bool append)
@@ -278,7 +278,7 @@ void ResourceManager::searchAndRemoveArchives(const std::string &path,
bool ResourceManager::mkdir(const std::string &path)
{
- return (bool) PHYSFS_mkdir(path.c_str());
+ return static_cast<bool>(PHYSFS_mkdir(path.c_str()));
}
bool ResourceManager::exists(const std::string &path)
@@ -611,7 +611,8 @@ std::vector<std::string> ResourceManager::loadTextFile(
const std::string &fileName)
{
int contentsLength;
- char *fileContents = (char*)loadFile(fileName, contentsLength);
+ char *fileContents = static_cast<char*>(
+ loadFile(fileName, contentsLength));
std::vector<std::string> lines;
if (!fileContents)