Fix enum naming

This commit is contained in:
Christian Semmler 2025-07-12 14:51:52 -07:00
parent 94c6861c8b
commit f163d137ff
No known key found for this signature in database
GPG Key ID: 086DAA1360BEEE5C
2 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ class LegoInputManager : public MxPresenter {
enum TouchScheme {
e_mouse = 0,
e_arrow_keys,
e_arrowKeys,
e_gamepad,
};

View File

@ -549,7 +549,7 @@ MxBool LegoInputManager::HandleTouchEvent(SDL_Event* p_event, TouchScheme p_touc
case e_mouse:
// Handled in LegoCameraController
return FALSE;
case e_arrow_keys:
case e_arrowKeys:
switch (p_event->type) {
case SDL_EVENT_FINGER_UP:
m_touchFlags.erase(event.fingerID);