-added missing fromUTF8 in help file reading, fixes display

problems in languages like french
This commit is contained in:
fix94.1 2012-05-30 15:00:33 +00:00
parent 04a2542ed6
commit cc0d304f18

View File

@ -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));