From 5506576d4c42196b5aac60612f0610a73e0e8522 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 13 Mar 2007 00:29:22 +0000 Subject: [PATCH] fix up ScreenTestLights --- stepmania/src/ScreenTestLights.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stepmania/src/ScreenTestLights.cpp b/stepmania/src/ScreenTestLights.cpp index eb77ff1126..244a799b47 100644 --- a/stepmania/src/ScreenTestLights.cpp +++ b/stepmania/src/ScreenTestLights.cpp @@ -91,13 +91,15 @@ void ScreenTestLights::Input( const InputEventPlus &input ) if( input.type != IET_FIRST_PRESS && input.type != IET_REPEAT ) return; // ignore - Screen::Input( input ); // default handler + ScreenWithMenuElements::Input( input ); // default handler } void ScreenTestLights::HandleScreenMessage( const ScreenMessage SM ) { if( SM == SM_LoseFocus ) LIGHTSMAN->SetLightsMode( LIGHTSMODE_MENU ); + + ScreenWithMenuElements::HandleScreenMessage( SM ); } void ScreenTestLights::MenuLeft( const InputEventPlus &input )