summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-11-01 20:24:09 +0300
committerAndrei Karas <akaras@inbox.ru>2013-11-01 21:33:37 +0300
commit23b307ad13024134908849b53b756dd6073f8d56 (patch)
tree29b02c624c07e49a29ed44962282f61de946324d /src/main.cpp
parente9ddc70c0202c04535c83753bad2d01a92527b15 (diff)
downloadManaVerse-23b307ad13024134908849b53b756dd6073f8d56.tar.gz
ManaVerse-23b307ad13024134908849b53b756dd6073f8d56.tar.bz2
ManaVerse-23b307ad13024134908849b53b756dd6073f8d56.tar.xz
ManaVerse-23b307ad13024134908849b53b756dd6073f8d56.zip
move physfs initialisation code in physfstools.
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp19
1 files changed, 2 insertions, 17 deletions
diff --git a/src/main.cpp b/src/main.cpp
index f9ee5d5d7..765d0d11c 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -304,26 +304,11 @@ int main(int argc, char *argv[])
_exit(0);
}
- // Initialize PhysicsFS
-#if defined(__native_client__)
- if (!PHYSFS_init("/fakebinary"))
-#elif defined(ANDROID)
+#ifdef ANDROID
mkdir_r(getSdStoragePath().c_str());
-
- if (!PHYSFS_init((getRealPath(".").append("/fakebinary")).c_str()))
-#else
- if (!PHYSFS_init(argv[0]))
#endif
- {
- std::cout << "Error while initializing PhysFS: "
- << PHYSFS_getLastError() << std::endl;
- return 1;
- }
-
- PhysFs::updateDirSeparator();
-
- atexit((void(*)()) PHYSFS_deinit);
+ PhysFs::init(argv[0]);
XML::initXML();
#if SDL_IMAGE_VERSION_ATLEAST(1, 2, 11)
IMG_Init(IMG_INIT_PNG);