Unicode fix

This commit is contained in:
auria.mg 2018-02-24 21:38:31 -05:00
parent 34caab24fe
commit 8d565fba11

View File

@ -133,7 +133,7 @@ namespace Online
void addParameter(const std::string &name,
const irr::core::stringw &value)
{
core::stringc s = core::stringc(value.c_str());
std::string s = StringUtils::wideToUtf8(value);
// Call the template to escape strings properly
addParameter(name, s.c_str());