diff --git a/stepmania/src/BitmapText.cpp b/stepmania/src/BitmapText.cpp index 11725a3ebf..cf03c57b80 100644 --- a/stepmania/src/BitmapText.cpp +++ b/stepmania/src/BitmapText.cpp @@ -464,6 +464,12 @@ void BitmapText::SetMaxHeight( float fMaxHeight ) UpdateBaseZoom(); } +void BitmapText::SetUppercase( bool b ) +{ + m_bUppercase = b; + BuildChars(); +} + void BitmapText::UpdateBaseZoom() { if( m_fMaxWidth == 0 ) diff --git a/stepmania/src/BitmapText.h b/stepmania/src/BitmapText.h index 28559110fd..ee5721f55e 100644 --- a/stepmania/src/BitmapText.h +++ b/stepmania/src/BitmapText.h @@ -33,7 +33,7 @@ public: virtual bool EarlyAbortDraw() const; virtual void DrawPrimitives(); - void SetUppercase( bool b ) { m_bUppercase = b; } + void SetUppercase( bool b ); void SetRainbowScroll( bool b ) { m_bRainbowScroll = b; } void SetJitter( bool b ) { m_bJitter = b; }