MenuInput -> MenuButton

This commit is contained in:
Glenn Maynard
2006-09-14 20:52:34 +00:00
parent dd2f259a2f
commit c7dfb9f2ec
13 changed files with 22 additions and 22 deletions
+2 -2
View File
@@ -61,7 +61,7 @@ void ScreenCenterImage::Input( const InputEventPlus &input )
return;
}
switch( input.MenuI.button )
switch( input.MenuI )
{
case MENU_BUTTON_START:
SCREENMAN->PlayStartSound();
@@ -80,7 +80,7 @@ void ScreenCenterImage::Input( const InputEventPlus &input )
bool bIncrease = false;
Axis axis = NUM_AXES;
switch( input.MenuI.button )
switch( input.MenuI )
{
case MENU_BUTTON_UP: axis = AXIS_TRANS_Y; bIncrease = false; break;
case MENU_BUTTON_DOWN: axis = AXIS_TRANS_Y; bIncrease = true; break;