diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-02-10 20:16:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-02-10 20:47:24 +0300 |
commit | 6c9c56b70db43f4100863d312835fce763698008 (patch) | |
tree | 4a182019f18677c1b71202a79d8f4faceebe05c9 /src/utils/gettexthelper.cpp | |
parent | 5e7866bd7cc3bf850d9ba3e636d8eca88ac797c7 (diff) | |
download | plus-6c9c56b70db43f4100863d312835fce763698008.tar.gz plus-6c9c56b70db43f4100863d312835fce763698008.tar.bz2 plus-6c9c56b70db43f4100863d312835fce763698008.tar.xz plus-6c9c56b70db43f4100863d312835fce763698008.zip |
Rename physfstools into virtfs.
Diffstat (limited to 'src/utils/gettexthelper.cpp')
-rw-r--r-- | src/utils/gettexthelper.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/utils/gettexthelper.cpp b/src/utils/gettexthelper.cpp index edbc11671..5b1999925 100644 --- a/src/utils/gettexthelper.cpp +++ b/src/utils/gettexthelper.cpp @@ -28,7 +28,7 @@ #include "client.h" #include "logger.h" -#include "utils/physfstools.h" +#include "utils/virtfs.h" #include <libintl.h> @@ -99,16 +99,16 @@ void GettextHelper::initLang() bindTextDomain((std::string(getenv("APPDIR")).append("/locale")).c_str()); #else // USE_SDL2 - bindTextDomain((std::string(PhysFs::getBaseDir()).append( + bindTextDomain((std::string(VirtFs::getBaseDir()).append( "/locale")).c_str()); #endif // USE_SDL2 #else // ANDROID #ifdef ENABLE_PORTABLE - bindTextDomain((std::string(PhysFs::getBaseDir()).append( + bindTextDomain((std::string(VirtFs::getBaseDir()).append( "../locale/")).c_str()); #else // ENABLE_PORTABLE #ifdef __APPLE__ - bindTextDomain((std::string(PhysFs::getBaseDir()) + bindTextDomain((std::string(VirtFs::getBaseDir()) .append("ManaPlus.app/Contents/Resources/locale/")).c_str()); #else // __APPLE__ |