diff options
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 9351536b9..0266dde21 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -27,13 +27,13 @@ #include <getopt.h> #include <iostream> -#include <physfs.h> #include "utils/gettext.h" #ifdef ANDROID #include "utils/mkdir.h" #endif #include "utils/paths.h" +#include "utils/physfstools.h" #include "utils/xml.h" #ifdef UNITTESTS @@ -262,7 +262,7 @@ int main(int argc, char *argv[]) XML::initXML(); #ifdef WIN32 - SetCurrentDirectory(PHYSFS_getBaseDir()); + SetCurrentDirectory(PhysFs::getBaseDir()); #endif Client client(options); if (!options.testMode) |