mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-02-16 20:15:38 +00:00
Fixed two incorrect intializations in TextComponent.
This commit is contained in:
parent
bf222d7eb0
commit
f2c708bf79
|
@ -16,7 +16,7 @@ TextComponent::TextComponent()
|
|||
: mFont {Font::get(FONT_SIZE_MEDIUM)}
|
||||
, mColor {0x000000FF}
|
||||
, mBgColor {0x00000000}
|
||||
, mColorOpacity {0x00000000}
|
||||
, mColorOpacity {0x000000FF}
|
||||
, mBgColorOpacity {0x00000000}
|
||||
, mRenderBackground {false}
|
||||
, mUppercase {false}
|
||||
|
@ -39,7 +39,7 @@ TextComponent::TextComponent(const std::string& text,
|
|||
: mFont {nullptr}
|
||||
, mColor {0x000000FF}
|
||||
, mBgColor {0x00000000}
|
||||
, mColorOpacity {0x00000000}
|
||||
, mColorOpacity {0x000000FF}
|
||||
, mBgColorOpacity {0x00000000}
|
||||
, mRenderBackground {false}
|
||||
, mUppercase {false}
|
||||
|
|
Loading…
Reference in a new issue