diff options
Diffstat (limited to 'src/utils/paths.cpp')
-rw-r--r-- | src/utils/paths.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/utils/paths.cpp b/src/utils/paths.cpp index 96cd0ed29..ae576d1e4 100644 --- a/src/utils/paths.cpp +++ b/src/utils/paths.cpp @@ -25,6 +25,8 @@ #endif #include "utils/paths.h" + +#include "utils/files.h" #include "utils/physfstools.h" #include "utils/stringutils.h" @@ -174,7 +176,7 @@ std::string getPicturesDir() } StringVect arr; - ResourceManager::loadTextFileLocal(file, arr); + Files::loadTextFileLocal(file, arr); FOR_EACH (StringVectCIter, it, arr) { std::string str = *it; |