diff options
author | Constantin Wenger <constantin.wenger@googlemail.com> | 2011-07-22 12:54:07 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2011-07-22 13:27:30 +0200 |
commit | bf3dfec7d6d171c5c83142319067153f2637b0a8 (patch) | |
tree | cdf2ebe153baee382e91ab6239744f61d90b1da2 /src/main.cpp | |
parent | aaa165f985ec30e96ae9a975c9ad96d6e99f5ac7 (diff) | |
download | minetest-bf3dfec7d6d171c5c83142319067153f2637b0a8.tar.gz minetest-bf3dfec7d6d171c5c83142319067153f2637b0a8.tar.bz2 minetest-bf3dfec7d6d171c5c83142319067153f2637b0a8.zip |
fixed problem with displaying special chars
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index b6a53566e..a7634a3c1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1132,7 +1132,7 @@ int main(int argc, char *argv[]) // Create user data directory
fs::CreateDir(porting::path_userdata);
- setlocale(LC_ALL, "");
+ setlocale(LC_MESSAGES, ""); bindtextdomain("minetest-c55", (porting::path_userdata+"/locale").c_str());
textdomain("minetest-c55");
|