From a5d7a0ecdff74dbc04c55aaa8ea4950021904811 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Tue, 6 May 2008 02:18:23 +0000 Subject: [PATCH] always show SeparateExitRow --- stepmania/src/ScreenOptions.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stepmania/src/ScreenOptions.cpp b/stepmania/src/ScreenOptions.cpp index 8c5bd2682a..21d7007874 100644 --- a/stepmania/src/ScreenOptions.cpp +++ b/stepmania/src/ScreenOptions.cpp @@ -670,9 +670,8 @@ void ScreenOptions::PositionRows( bool bTween ) tsDestination.Init(); tsDestination.pos.y = SEPARATE_EXIT_ROW_Y; - bool bHidden = (second_end != (int) Rows.size()); for( int j=0; j<4; j++ ) - tsDestination.diffuse[j].a = bHidden? 0.0f:1.0f; + tsDestination.diffuse[j].a = 1.0f; pSeparateExitRow->SetDestination( tsDestination, bTween ); } }