|
From: Yoda-JM <yo...@us...> - 2009-12-29 13:48:30
|
Module: performous
Branch: master
Commit: 2d5b47a4dd01792bb1c25165933e04bea89fdd70
Author: Vincent Le Ligeour <yo...@us...>
Date: Tue Dec 29 14:47:40 2009 +0100
Fixed UTF-8 translations
---
game/main.cc | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/game/main.cc b/game/main.cc
index 03b47f4..204b032 100644
--- a/game/main.cc
+++ b/game/main.cc
@@ -212,6 +212,7 @@ int main(int argc, char** argv) {
setlocale (LC_MESSAGES, "");
bindtextdomain (PACKAGE, LOCALEDIR);
textdomain (PACKAGE);
+ bind_textdomain_codeset (PACKAGE, "UTF-8");
#endif
std::cout << PACKAGE " " VERSION << std::endl;
|