Update with framework changes

This commit is contained in:
smoogipoo 2018-04-03 20:10:26 +09:00
parent e9ec544bf6
commit c39fb9a200
1 changed files with 2 additions and 2 deletions

View File

@ -223,7 +223,7 @@ protected override bool OnKeyUp(InputState state, KeyUpEventArgs args)
return true;
}
protected override bool OnJoystickPress(InputState state, JoystickPressEventArgs args)
protected override bool OnJoystickPress(InputState state, Framework.Input.JoystickEventArgs args)
{
if (!HasFocus)
return false;
@ -234,7 +234,7 @@ protected override bool OnJoystickPress(InputState state, JoystickPressEventArgs
return true;
}
protected override bool OnJoystickRelease(InputState state, JoystickReleaseEventArgs args)
protected override bool OnJoystickRelease(InputState state, Framework.Input.JoystickEventArgs args)
{
if (!HasFocus)
return base.OnJoystickRelease(state, args);