add StrokeIsUnder font option

This commit is contained in:
Chris Danford
2008-05-05 22:34:34 +00:00
parent 2ed5c7eff8
commit 4d30695f08
3 changed files with 26 additions and 7 deletions
+2
View File
@@ -230,6 +230,7 @@ Font::Font()
m_bRightToLeft = false;
m_fFontBaseZoom = 1;
m_DefaultStrokeColor = RageColor(1,1,1,1);
m_bStrokeIsUnder = true;
}
Font::~Font()
@@ -695,6 +696,7 @@ void Font::Load( const RString &sIniPath, RString sChars )
RString s;
if( ini.GetValue( "main", "DefaultStrokeColor", s ) )
m_DefaultStrokeColor.FromString( s );
ini.GetValue( "main", "StrokeIsUnder", m_bStrokeIsUnder );
}
{