aboutsummaryrefslogtreecommitdiff
path: root/src/guiTextInputMenu.cpp
diff options
context:
space:
mode:
authorConstantin Wenger <constantin.wenger@googlemail.com>2011-07-30 10:14:58 +0200
committerConstantin Wenger <constantin.wenger@googlemail.com>2011-07-30 22:08:16 +0200
commit9baae3a701f7bdf50972d8381904d11eee77aa4e (patch)
tree2e76ca208ed28df66c6b22001dc1590dc6cf7736 /src/guiTextInputMenu.cpp
parent92f504f98d4af7a31df7b1bfa80fce114638f4cf (diff)
downloadhax-minetest-server-9baae3a701f7bdf50972d8381904d11eee77aa4e.tar.gz
hax-minetest-server-9baae3a701f7bdf50972d8381904d11eee77aa4e.zip
set locales to C because en_US not installed on some systems, only UTF-8 version and en_US.UTF-8 does not work.
Diffstat (limited to '')
-rw-r--r--src/guiTextInputMenu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/guiTextInputMenu.cpp b/src/guiTextInputMenu.cpp
index 8c32490be..a59602554 100644
--- a/src/guiTextInputMenu.cpp
+++ b/src/guiTextInputMenu.cpp
@@ -104,14 +104,14 @@ void GUITextInputMenu::regenerateGui(v2u32 screensize)
Environment->addEditBox(text.c_str(), rect, true, this, 256);
Environment->setFocus(e);
}
- setlocale(LC_CTYPE, "");
+ changeCtype("");
{
core::rect<s32> rect(0, 0, 140, 30);
rect = rect + v2s32(size.X/2-140/2, size.Y/2-30/2+25);
Environment->addButton(rect, this, 257,
chartowchar_t(gettext("Proceed")));
}
- setlocale(LC_CTYPE, "en_US");
+ changeCtype("C");
}
void GUITextInputMenu::drawMenu()