diff --git a/stepmania/src/GraphDisplay.cpp b/stepmania/src/GraphDisplay.cpp index 6fbaa8f972..e271f73229 100644 --- a/stepmania/src/GraphDisplay.cpp +++ b/stepmania/src/GraphDisplay.cpp @@ -184,8 +184,10 @@ void GraphDisplay::DrawPrimitives() DISPLAY->ClearAllTextures(); DISPLAY->SetTexture( 0, m_pTexture ); - // don't bother setting texture render states for a null texture - //Actor::SetTextureRenderStates(); + + // Must call this after setting the texture or else texture + // parameters have no effect. + Actor::SetTextureRenderStates(); DISPLAY->DrawQuads( m_Slices, ARRAYSIZE(m_Slices) ); DISPLAY->SetTexture( 0, NULL );