fix starwipe (ARGB got switched with RGBA)

This commit is contained in:
Glenn Maynard
2002-10-30 19:43:20 +00:00
parent f49876b23e
commit 5ca988ede1
+1 -1
View File
@@ -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();
}