fix base call

This commit is contained in:
Glenn Maynard
2006-11-21 20:03:28 +00:00
parent 7ef6009567
commit ce86b65827
4 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -132,7 +132,7 @@ void ScreenSelectGroup::Input( const InputEventPlus &input )
if( IsTransitioning() )
return;
Screen::Input( input ); // default input handler
ScreenWithMenuElements::Input( input ); // default input handler
}
void ScreenSelectGroup::HandleScreenMessage( const ScreenMessage SM )
@@ -142,7 +142,7 @@ void ScreenSelectGroup::HandleScreenMessage( const ScreenMessage SM )
StartTransitioningScreen( SM_GoToNextScreen );
return;
}
Screen::HandleScreenMessage( SM );
ScreenWithMenuElements::HandleScreenMessage( SM );
}
void ScreenSelectGroup::AfterChange()