From a16004a3038037136c017c8b3386b16f52c2318f Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 26 Feb 2005 09:21:33 +0000 Subject: [PATCH] fix draw order --- 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 a70d85fdb6..fd4bbdb5e4 100644 --- a/stepmania/src/ScreenGameplay.cpp +++ b/stepmania/src/ScreenGameplay.cpp @@ -654,7 +654,7 @@ void ScreenGameplay::Init() this->AddChild( &m_textDebug ); m_Overlay.Load( THEME->GetPathB(m_sName,"overlay") ); - m_Overlay->SetDrawOrder( DRAW_ORDER_TRANSITIONS-1 ); + m_Overlay->SetDrawOrder( DRAW_ORDER_OVERLAY ); this->AddChild( m_Overlay ); m_In.Load( THEME->GetPathB(m_sName,"in") );