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

master
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

@ -2,8 +2,6 @@
#include <libintl.h>
#else
#define gettext(String) String
#define bindtextdomain(domain, dir) /* */
#define textdomain(domain) /* */
#endif
#define _(String) gettext(String)

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