From 04080c8b1b04686bfa16a5b3585b6badd5284050 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sun, 24 Aug 2003 17:03:33 +0000 Subject: [PATCH] draw help behind NoteField in editor --- stepmania/src/ScreenEdit.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stepmania/src/ScreenEdit.cpp b/stepmania/src/ScreenEdit.cpp index ee680ff332..6ee494ef3e 100644 --- a/stepmania/src/ScreenEdit.cpp +++ b/stepmania/src/ScreenEdit.cpp @@ -518,6 +518,10 @@ void ScreenEdit::DrawPrimitives() case MODE_EDITING: { m_BGAnimation.Draw(); + m_sprHelp.Draw(); + m_textHelp.Draw(); + m_sprInfo.Draw(); + m_textInfo.Draw(); m_SnapDisplay.Draw(); m_GrayArrowRowEdit.Draw(); @@ -527,10 +531,6 @@ void ScreenEdit::DrawPrimitives() m_NoteFieldEdit.Draw(); GAMESTATE->m_fSongBeat = fSongBeat; // restore real song beat - m_sprHelp.Draw(); - m_textHelp.Draw(); - m_sprInfo.Draw(); - m_textInfo.Draw(); m_In.Draw(); m_Out.Draw(); }