Use blender's new support for unicode to properly write Samuncle's name
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@10428 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
parent
2920a5a126
commit
184da58d31
@ -279,8 +279,10 @@ void Track::loadTrackInfo()
|
||||
}
|
||||
root->get("name", &m_name);
|
||||
|
||||
//root->get("description", &m_description);
|
||||
root->get("designer", &m_designer);
|
||||
std::string designer;
|
||||
root->get("designer", &designer);
|
||||
m_designer = StringUtils::decodeFromHtmlEntities(designer);
|
||||
|
||||
root->get("version", &m_version);
|
||||
std::vector<std::string> filenames;
|
||||
root->get("music", &filenames);
|
||||
|
Loading…
Reference in New Issue
Block a user