mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-17 22:55:38 +00:00
Line breaks are now filtered out from systems names and system full names if specified as such in the es_systems.xml file.
This commit is contained in:
parent
d927135034
commit
a142da3d34
|
@ -490,8 +490,8 @@ bool SystemData::loadConfig()
|
|||
std::string path;
|
||||
std::string themeFolder;
|
||||
|
||||
name = system.child("name").text().get();
|
||||
fullname = system.child("fullname").text().get();
|
||||
name = Utils::String::replace(system.child("name").text().get(), "\n", "");
|
||||
fullname = Utils::String::replace(system.child("fullname").text().get(), "\n", "");
|
||||
sortName = system.child("systemsortname").text().get();
|
||||
path = system.child("path").text().get();
|
||||
|
||||
|
|
Loading…
Reference in a new issue