From a5770950e36342abb2c6acd3fa6c64f189ab4dd3 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 15 Feb 2004 03:05:21 +0000 Subject: [PATCH] enable Sprite::EarlyAbortDraw; fixes white CDTitle when it should be hidden --- stepmania/src/Sprite.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/Sprite.cpp b/stepmania/src/Sprite.cpp index 7ca6339c96..d4b49b676f 100644 --- a/stepmania/src/Sprite.cpp +++ b/stepmania/src/Sprite.cpp @@ -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()