From 952988d5cddca19d5bffa34bc418307a87843eb8 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Fri, 18 Jul 2025 03:51:18 -0400 Subject: [PATCH] Fix missing gamepad keys in inputevents.zs --- wadsrc/static/zscript/engine/inputevents.zs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/engine/inputevents.zs b/wadsrc/static/zscript/engine/inputevents.zs index ba63b59e9..37a017c1a 100644 --- a/wadsrc/static/zscript/engine/inputevents.zs +++ b/wadsrc/static/zscript/engine/inputevents.zs @@ -234,8 +234,15 @@ struct InputEvent native play version("2.4") Key_Pad_B = 0x1C1, Key_Pad_X = 0x1C2, Key_Pad_Y = 0x1C3, + Key_Pad_Paddle1 = 0x1C4, + Key_Pad_Paddle2 = 0x1C5, + Key_Pad_Paddle3 = 0x1C6, + Key_Pad_Paddle4 = 0x1C7, + Key_Pad_Guide = 0x1C8, + Key_Pad_Misc1 = 0x1C9, + Key_Pad_Touchpad = 0x1CA, - Num_Keys = 0x1C4 + Num_Keys = 0x1CB } //