Rename some more global enums (Key, Joy, MIDI)

This commit is contained in:
Aaron Franke 2020-05-13 18:27:34 -04:00
parent 10d7fccb54
commit a5324787c8
No known key found for this signature in database
GPG key ID: 40A1750B977E56BF
27 changed files with 366 additions and 366 deletions

View file

@ -477,7 +477,7 @@ void DisplayServerAndroid::process_joy_event(DisplayServerAndroid::JoypadEvent p
Input::get_singleton()->joy_button(p_event.device, p_event.index, p_event.pressed);
break;
case JOY_EVENT_AXIS:
Input::JoyAxis value;
Input::JoyAxisValue value;
value.min = -1;
value.value = p_event.value;
Input::get_singleton()->joy_axis(p_event.device, p_event.index, value);