1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

quick fix to it not building with gettext on my visual studio environment

This commit is contained in:
Perttu Ahola 2011-07-30 14:38:41 +03:00
parent 1de45cc8a7
commit df27b85432
2 changed files with 2 additions and 2 deletions

View file

@ -1161,9 +1161,11 @@ int main(int argc, char *argv[])
// Create user data directory
fs::CreateDir(porting::path_userdata);
#ifdef USE_GETTEXT
setlocale(LC_MESSAGES, "");
bindtextdomain("minetest", (porting::path_userdata+"/locale").c_str());
textdomain("minetest");
#endif
// Initialize debug streams
#ifdef RUN_IN_PLACE