Map the Android MENU button back to the SDL MENU key

Thanks to @AntTheAlchemist for the investigation!

Fixes https://github.com/libsdl-org/SDL/issues/7318

(cherry picked from commit beb6a2afdc74a00f07ec230297c2675920a7bf79)
This commit is contained in:
Sam Lantinga 2023-02-14 18:02:12 -08:00
parent 2c6995778e
commit 69b2baec5c

View File

@ -185,6 +185,8 @@ static SDL_Scancode button_to_scancode(int button)
return SDL_SCANCODE_ESCAPE;
case SDL_CONTROLLER_BUTTON_BACK:
return SDL_SCANCODE_ESCAPE;
case SDL_CONTROLLER_BUTTON_START:
return SDL_SCANCODE_MENU;
case SDL_CONTROLLER_BUTTON_DPAD_UP:
return SDL_SCANCODE_UP;
case SDL_CONTROLLER_BUTTON_DPAD_DOWN: