pass around InputEventPlus in Screen::Input instead of multiple input structures
This commit is contained in:
@@ -137,14 +137,14 @@ void ScreenSelectGroup::Init()
|
||||
}
|
||||
|
||||
|
||||
void ScreenSelectGroup::Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI )
|
||||
void ScreenSelectGroup::Input( const InputEventPlus &input )
|
||||
{
|
||||
LOG->Trace( "ScreenSelectGroup::Input()" );
|
||||
|
||||
if( IsTransitioning() )
|
||||
return;
|
||||
|
||||
Screen::Input( DeviceI, type, GameI, MenuI, StyleI ); // default input handler
|
||||
Screen::Input( input ); // default input handler
|
||||
}
|
||||
|
||||
void ScreenSelectGroup::HandleScreenMessage( const ScreenMessage SM )
|
||||
|
||||
Reference in New Issue
Block a user