summaryrefslogtreecommitdiff
path: root/src/maingui.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-02-10 20:16:03 +0300
committerAndrei Karas <akaras@inbox.ru>2017-02-10 20:47:24 +0300
commit6c9c56b70db43f4100863d312835fce763698008 (patch)
tree4a182019f18677c1b71202a79d8f4faceebe05c9 /src/maingui.cpp
parent5e7866bd7cc3bf850d9ba3e636d8eca88ac797c7 (diff)
downloadplus-6c9c56b70db43f4100863d312835fce763698008.tar.gz
plus-6c9c56b70db43f4100863d312835fce763698008.tar.bz2
plus-6c9c56b70db43f4100863d312835fce763698008.tar.xz
plus-6c9c56b70db43f4100863d312835fce763698008.zip
Rename physfstools into virtfs.
Diffstat (limited to 'src/maingui.cpp')
-rw-r--r--src/maingui.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/maingui.cpp b/src/maingui.cpp
index df28856fe..6f8de4083 100644
--- a/src/maingui.cpp
+++ b/src/maingui.cpp
@@ -96,7 +96,7 @@ int mainGui(int argc, char *argv[])
mkdir_r(getSdStoragePath().c_str());
#endif // ANDROID
- PhysFs::init(argv[0]);
+ VirtFs::init(argv[0]);
XML::initXML();
#if SDL_IMAGE_VERSION_ATLEAST(1, 2, 11)
IMG_Init(IMG_INIT_PNG);
@@ -106,7 +106,7 @@ int mainGui(int argc, char *argv[])
#endif // SDL_MIXER_VERSION_ATLEAST(1, 2, 11)
#ifdef WIN32
- SetCurrentDirectory(PhysFs::getBaseDir());
+ SetCurrentDirectory(VirtFs::getBaseDir());
#endif // WIN32
setPriority(true);
@@ -144,7 +144,7 @@ int mainGui(int argc, char *argv[])
int main(int argc, char *argv[])
{
- PhysFs::init(argv[0]);
+ VirtFs::init(argv[0]);
return Catch::Session().run(argc, argv);
}