From cc0d304f18d5fb039db870fb0083a3cd072695ad Mon Sep 17 00:00:00 2001 From: "fix94.1" Date: Wed, 30 May 2012 15:00:33 +0000 Subject: [PATCH] -added missing fromUTF8 in help file reading, fixes display problems in languages like french --- source/menu/menu_about.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/menu/menu_about.cpp b/source/menu/menu_about.cpp index 7bc43922..54564488 100644 --- a/source/menu/menu_about.cpp +++ b/source/menu/menu_about.cpp @@ -145,7 +145,8 @@ void CMenu::_textAbout(void) fclose(f); } - wstringEx help_text(help); + wstringEx help_text; + help_text.fromUTF8(help); wstringEx developers(wfmt(_fmt("about6", L"\nCurrent Developers:\n%s"), DEVELOPERS)); wstringEx pDevelopers(wfmt(_fmt("about7", L"Past Developers:\n%s"), PAST_DEVELOPERS));