mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-04-10 19:15:13 +00:00
Fixed an uninitialized variable in ThemeData.
This commit is contained in:
parent
9bd1bf74da
commit
b91daa113d
|
@ -177,6 +177,12 @@ public:
|
||||||
bool override;
|
bool override;
|
||||||
std::string overrideTrigger;
|
std::string overrideTrigger;
|
||||||
std::string overrideVariant;
|
std::string overrideVariant;
|
||||||
|
|
||||||
|
ThemeVariant()
|
||||||
|
: selectable {false}
|
||||||
|
, override {false}
|
||||||
|
{
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
struct ThemeColorScheme {
|
struct ThemeColorScheme {
|
||||||
|
|
Loading…
Reference in a new issue