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
Sam Lantinga 2023-02-14 18:02:12 -08:00
parent 5925cd4ef3
commit beb6a2afdc
1 changed files with 2 additions and 0 deletions

View File

@ -180,6 +180,8 @@ static SDL_Scancode button_to_scancode(int button)
return SDL_SCANCODE_ESCAPE;
case SDL_GAMEPAD_BUTTON_BACK:
return SDL_SCANCODE_ESCAPE;
case SDL_GAMEPAD_BUTTON_START:
return SDL_SCANCODE_MENU;
case SDL_GAMEPAD_BUTTON_DPAD_UP:
return SDL_SCANCODE_UP;
case SDL_GAMEPAD_BUTTON_DPAD_DOWN: