mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
Added two more theme system variables.
This commit is contained in:
parent
59f9791efe
commit
bdbc0580d2
|
@ -1232,12 +1232,16 @@ void SystemData::loadTheme()
|
||||||
sysData.insert(std::pair<std::string, std::string>("system.theme", getThemeFolder()));
|
sysData.insert(std::pair<std::string, std::string>("system.theme", getThemeFolder()));
|
||||||
sysData.insert(std::pair<std::string, std::string>("system.fullName", getFullName()));
|
sysData.insert(std::pair<std::string, std::string>("system.fullName", getFullName()));
|
||||||
if (isCollection()) {
|
if (isCollection()) {
|
||||||
|
sysData.insert(
|
||||||
|
std::pair<std::string, std::string>("system.name.collections", getName()));
|
||||||
sysData.insert(
|
sysData.insert(
|
||||||
std::pair<std::string, std::string>("system.fullName.collections", getFullName()));
|
std::pair<std::string, std::string>("system.fullName.collections", getFullName()));
|
||||||
sysData.insert(
|
sysData.insert(
|
||||||
std::pair<std::string, std::string>("system.theme.collections", getThemeFolder()));
|
std::pair<std::string, std::string>("system.theme.collections", getThemeFolder()));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
sysData.insert(
|
||||||
|
std::pair<std::string, std::string>("system.name.noCollections", getName()));
|
||||||
sysData.insert(std::pair<std::string, std::string>("system.fullName.noCollections",
|
sysData.insert(std::pair<std::string, std::string>("system.fullName.noCollections",
|
||||||
getFullName()));
|
getFullName()));
|
||||||
sysData.insert(std::pair<std::string, std::string>("system.theme.noCollections",
|
sysData.insert(std::pair<std::string, std::string>("system.theme.noCollections",
|
||||||
|
|
Loading…
Reference in a new issue