1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 05:23:04 +01:00

Fix initial value of SpriteBase

This commit is contained in:
Gymnasiast
2021-02-27 14:42:04 +01:00
parent 4d9c278ebc
commit a4747b9c8c

View File

@@ -33,7 +33,7 @@ enum class TextUnderline
struct TextPaint
{
colour_t Colour = COLOUR_BLACK;
FontSpriteBase SpriteBase = FontSpriteBase::SMALL;
FontSpriteBase SpriteBase = FontSpriteBase::MEDIUM;
TextUnderline UnderlineText = TextUnderline::Off;
TextAlignment Alignment = TextAlignment::LEFT;