From 7ddd8aee250e05781466f759b174059fd8209675 Mon Sep 17 00:00:00 2001 From: "ardi@ist-einmalig.de" Date: Thu, 15 Oct 2009 14:13:13 +0000 Subject: [PATCH] fix missing utf-8 support with devkitPPC r18 --- source/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/main.cpp b/source/main.cpp index 44553ec0..f5adfdbf 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -14,6 +14,7 @@ #include #include #include +#include #include #include "libwiigui/gui.h" @@ -122,6 +123,8 @@ static void BootUpProblems() int main(int argc, char *argv[]) { + setlocale(LC_ALL, "en.UTF-8"); + s32 ret; bool startupproblem = false;