From 5ca988ede1ff6af0fb989faaccd68bb07e7c6abc Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 30 Oct 2002 19:43:20 +0000 Subject: [PATCH] fix starwipe (ARGB got switched with RGBA) --- stepmania/src/TransitionStarWipe.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/TransitionStarWipe.cpp b/stepmania/src/TransitionStarWipe.cpp index e404179e00..0cb16638c8 100644 --- a/stepmania/src/TransitionStarWipe.cpp +++ b/stepmania/src/TransitionStarWipe.cpp @@ -79,7 +79,7 @@ void TransitionStarWipe::DrawPrimitives() int y_top = y - m_iStarHeight/2; int y_bot = y + m_iStarHeight/2+1; m_rect.StretchTo( CRect(x_rect_leading_edge, y_top, x_rect_trailing_edge, y_bot) ); - m_rect.SetDiffuse( RageColor(1,0,0,0) ); + m_rect.SetDiffuse( RageColor(0,0,0,1) ); m_rect.Draw(); }