Merge pull request #51745 from ModProg/android-right-click-3.x

[3.x] [android] Fixed wrong button mask for right click
This commit is contained in:
Rémi Verschelde 2021-08-17 12:50:09 +02:00 committed by GitHub
commit 97ca300acc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -360,7 +360,7 @@ int AndroidInputHandler::_android_button_mask_to_godot_button_mask(int android_b
if (android_button_mask & AMOTION_EVENT_BUTTON_BACK) {
godot_button_mask |= BUTTON_MASK_XBUTTON1;
}
if (android_button_mask & AMOTION_EVENT_BUTTON_SECONDARY) {
if (android_button_mask & AMOTION_EVENT_BUTTON_FORWARD) {
godot_button_mask |= BUTTON_MASK_XBUTTON2;
}