Change MenuUp(pn,type) overrides to MenuUp(IEP), so info like DeviceI.ts is always accessible.

This commit is contained in:
Glenn Maynard
2005-09-23 00:44:52 +00:00
parent df8153cf7b
commit 6ea2f37a36
40 changed files with 218 additions and 185 deletions
+6 -6
View File
@@ -88,12 +88,12 @@ void ScreenNetEvaluation::RedoUserTexts()
}
}
void ScreenNetEvaluation::MenuLeft( PlayerNumber pn, const InputEventType type )
void ScreenNetEvaluation::MenuLeft( const InputEventPlus &input )
{
MenuUp( pn, type );
MenuUp( input );
}
void ScreenNetEvaluation::MenuUp( PlayerNumber pn, const InputEventType type )
void ScreenNetEvaluation::MenuUp( const InputEventPlus &input )
{
if ( m_iActivePlayers == 0 )
return;
@@ -105,12 +105,12 @@ void ScreenNetEvaluation::MenuUp( PlayerNumber pn, const InputEventType type )
UpdateStats();
}
void ScreenNetEvaluation::MenuRight( PlayerNumber pn, const InputEventType type )
void ScreenNetEvaluation::MenuRight( const InputEventPlus &input )
{
MenuDown( pn, type );
MenuDown( input );
}
void ScreenNetEvaluation::MenuDown( PlayerNumber pn, const InputEventType type )
void ScreenNetEvaluation::MenuDown( const InputEventPlus &input )
{
if ( m_iActivePlayers == 0 )
return;