mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
Moved the color scheme parsing even earlier to prevent potential issues.
This commit is contained in:
parent
f1bd530963
commit
0d7468e9b4
|
@ -494,6 +494,9 @@ void ThemeData::loadFile(const std::map<std::string, std::string>& sysDataMap,
|
||||||
}
|
}
|
||||||
|
|
||||||
parseVariables(root);
|
parseVariables(root);
|
||||||
|
if (!mLegacyTheme)
|
||||||
|
parseColorSchemes(root);
|
||||||
|
|
||||||
parseIncludes(root);
|
parseIncludes(root);
|
||||||
parseViews(root);
|
parseViews(root);
|
||||||
// For non-legacy themes this will simply check for the presence of a feature tag and throw
|
// For non-legacy themes this will simply check for the presence of a feature tag and throw
|
||||||
|
@ -501,7 +504,6 @@ void ThemeData::loadFile(const std::map<std::string, std::string>& sysDataMap,
|
||||||
parseFeatures(root);
|
parseFeatures(root);
|
||||||
|
|
||||||
if (!mLegacyTheme) {
|
if (!mLegacyTheme) {
|
||||||
parseColorSchemes(root);
|
|
||||||
parseVariants(root);
|
parseVariants(root);
|
||||||
parseAspectRatios(root);
|
parseAspectRatios(root);
|
||||||
}
|
}
|
||||||
|
@ -1012,6 +1014,9 @@ void ThemeData::parseIncludes(const pugi::xml_node& root)
|
||||||
throw error << ": Missing <theme> tag";
|
throw error << ": Missing <theme> tag";
|
||||||
|
|
||||||
parseVariables(theme);
|
parseVariables(theme);
|
||||||
|
if (!mLegacyTheme)
|
||||||
|
parseColorSchemes(theme);
|
||||||
|
|
||||||
parseIncludes(theme);
|
parseIncludes(theme);
|
||||||
parseViews(theme);
|
parseViews(theme);
|
||||||
// For non-legacy themes this will simply check for the presence of a feature tag and throw
|
// For non-legacy themes this will simply check for the presence of a feature tag and throw
|
||||||
|
@ -1019,7 +1024,6 @@ void ThemeData::parseIncludes(const pugi::xml_node& root)
|
||||||
parseFeatures(theme);
|
parseFeatures(theme);
|
||||||
|
|
||||||
if (!mLegacyTheme) {
|
if (!mLegacyTheme) {
|
||||||
parseColorSchemes(theme);
|
|
||||||
parseVariants(theme);
|
parseVariants(theme);
|
||||||
parseAspectRatios(theme);
|
parseAspectRatios(theme);
|
||||||
}
|
}
|
||||||
|
@ -1123,9 +1127,8 @@ void ThemeData::parseColorSchemes(const pugi::xml_node& root)
|
||||||
<< "\" is not defined in capabilities.xml";
|
<< "\" is not defined in capabilities.xml";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mSelectedColorScheme == viewKey) {
|
if (mSelectedColorScheme == viewKey)
|
||||||
parseVariables(node);
|
parseVariables(node);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue