Fix initial value of SpriteBase

This commit is contained in:
Gymnasiast 2021-02-27 14:42:04 +01:00
parent 4d9c278ebc
commit a4747b9c8c
No known key found for this signature in database
GPG Key ID: DBFFF47AB2CA3EDD
1 changed files with 1 additions and 1 deletions

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;