More effective fixes.

Course playing still results in it playing fine.
This commit is contained in:
Jason Felds
2011-03-19 18:26:55 -04:00
parent 3dcdf67666
commit 22b7b34897
19 changed files with 72 additions and 55 deletions
+3 -8
View File
@@ -220,14 +220,9 @@ int Font::GetLineHeightInSourcePixels( const wstring &szLine ) const
}
Font::Font()
{
m_iRefCount = 1;
m_pDefault = NULL;
m_bRightToLeft = false;
// [sm-ssc] don't show strokes by default
m_DefaultStrokeColor = RageColor(0,0,0,0);
}
Font::Font(): m_iRefCount(1), path(""), m_apPages(), m_pDefault(NULL),
m_bRightToLeft(false), m_DefaultStrokeColor(RageColor(0,0,0,0)),
m_sChars("") {} // strokes aren't shown by default, hence the Color.
Font::~Font()
{