From 0de6c71e96eb8f7212704697824c6272e9d6db07 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sat, 19 Aug 2006 19:58:48 +0000 Subject: [PATCH] Simplify. --- stepmania/src/ScreenGameplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenGameplay.cpp b/stepmania/src/ScreenGameplay.cpp index 24e5da5145..bdf54561d2 100644 --- a/stepmania/src/ScreenGameplay.cpp +++ b/stepmania/src/ScreenGameplay.cpp @@ -1886,7 +1886,7 @@ void ScreenGameplay::UpdateLights() FOREACH_NONEMPTY_ROW_IN_TRACK_RANGE( nd, t, r, iRowLastCrossed+1, iSongRow+1 ) { const TapNote &tn = nd.GetTapNote( t, r ); - if( tn.type != TapNote::empty && tn.type != TapNote::mine ) + if( tn.type != TapNote::mine ) bBlink = true; }