From a34f11b7a8b9bbd53e1cc68ae2caf33b1abaaff1 Mon Sep 17 00:00:00 2001 From: Thad Ward Date: Mon, 8 Sep 2003 18:20:59 +0000 Subject: [PATCH] only need to call these if we are drawing the character or dancepad. --- stepmania/src/ScreenHowToPlay.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stepmania/src/ScreenHowToPlay.cpp b/stepmania/src/ScreenHowToPlay.cpp index da1f4e4691..e752726eec 100644 --- a/stepmania/src/ScreenHowToPlay.cpp +++ b/stepmania/src/ScreenHowToPlay.cpp @@ -273,9 +273,9 @@ void ScreenHowToPlay::DrawPrimitives() DISPLAY->SetLightOff( 0 ); DISPLAY->SetLighting( false ); - } - m_Overlay.DrawPrimitives(); - m_In.DrawPrimitives(); - m_Out.DrawPrimitives(); + m_Overlay.DrawPrimitives(); + m_In.DrawPrimitives(); + m_Out.DrawPrimitives(); + } }