In the XML standard, entities must start with 'x' if they are hex

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@9515 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria
2011-08-16 01:32:19 +00:00
parent d01724ffc3
commit 9be7bf48ba

View File

@@ -581,7 +581,7 @@ namespace StringUtils
}
else
{
output <<"&#" << std::hex <<std::uppercase<< s[i]<<";";
output <<"&#x" << std::hex <<std::uppercase<< s[i]<<";";
}
}
}