mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-18 07:05:39 +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 path;
|
||||||
std::string themeFolder;
|
std::string themeFolder;
|
||||||
|
|
||||||
name = system.child("name").text().get();
|
name = Utils::String::replace(system.child("name").text().get(), "\n", "");
|
||||||
fullname = system.child("fullname").text().get();
|
fullname = Utils::String::replace(system.child("fullname").text().get(), "\n", "");
|
||||||
sortName = system.child("systemsortname").text().get();
|
sortName = system.child("systemsortname").text().get();
|
||||||
path = system.child("path").text().get();
|
path = system.child("path").text().get();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue