From 6131ab52c0ff14051baa3cf43daa55f7fef21b60 Mon Sep 17 00:00:00 2001 From: Josh Allen Date: Tue, 11 Apr 2006 05:19:53 +0000 Subject: [PATCH] Apparently this was needed, grades show all the time not just sometimes. --- stepmania/src/GradeDisplay.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stepmania/src/GradeDisplay.cpp b/stepmania/src/GradeDisplay.cpp index ab4eab29e2..29e6f27d47 100644 --- a/stepmania/src/GradeDisplay.cpp +++ b/stepmania/src/GradeDisplay.cpp @@ -118,10 +118,12 @@ void GradeDisplay::SetGrade( PlayerNumber pn, Grade g ) { SetState( GetFrameIndex(pn,g) ); SetHidden( false ); + SetDiffuseAlpha(1); } else { SetHidden( true ); + SetDiffuseAlpha(0); } }