enable Sprite::EarlyAbortDraw; fixes white CDTitle when it should be hidden

This commit is contained in:
Glenn Maynard
2004-02-15 03:05:21 +00:00
parent a45f925485
commit a5770950e3
+2 -2
View File
@@ -437,8 +437,8 @@ static RageColor scale( float x, float l1, float h1, const RageColor &a, const R
bool Sprite::EarlyAbortDraw()
{
// return m_pTexture == NULL && !m_bDrawIfTextureNull;
return false;
return m_pTexture == NULL && !m_bDrawIfTextureNull;
// return false;
}
void Sprite::DrawPrimitives()