From 3205ffbe4b4f263f9c62a1e0573112d132f8e428 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 3 May 2007 21:21:19 +0000 Subject: [PATCH] don't mess with alpha --- stepmania/src/GradeDisplay.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/stepmania/src/GradeDisplay.cpp b/stepmania/src/GradeDisplay.cpp index b8f6842738..955dfe05f9 100644 --- a/stepmania/src/GradeDisplay.cpp +++ b/stepmania/src/GradeDisplay.cpp @@ -114,16 +114,14 @@ void GradeDisplay::SetGrade( PlayerNumber pn, Grade g ) m_bDoScrolling = false; StopUsingCustomCoords(); - if(g != Grade_NoData) + if( g != Grade_NoData ) { SetState( GetFrameIndex(pn,g) ); SetVisible( true ); - SetDiffuseAlpha(1); } else { SetVisible( false ); - SetDiffuseAlpha(0); } }