summaryrefslogtreecommitdiff
path: root/quantum/process_keycode
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2022-10-25 01:50:33 +1100
committerGitHub <noreply@github.com>2022-10-24 15:50:33 +0100
commit6bbe8b6eddc56d43f4db07c665bf1791ea2ab871 (patch)
treec19abffc806d190fcb89b56bc624d7b42cc8939e /quantum/process_keycode
parent64ca14feea586442516a2ec50d7335445f5f08f6 (diff)
Normalise Joystick and Programmable Button keycodes (#18832)
Diffstat (limited to 'quantum/process_keycode')
-rw-r--r--quantum/process_keycode/process_joystick.c6
-rw-r--r--quantum/process_keycode/process_programmable_button.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/quantum/process_keycode/process_joystick.c b/quantum/process_keycode/process_joystick.c
index af69d3aa05..c4c6fb59a8 100644
--- a/quantum/process_keycode/process_joystick.c
+++ b/quantum/process_keycode/process_joystick.c
@@ -19,11 +19,11 @@
19 19
20bool process_joystick(uint16_t keycode, keyrecord_t *record) { 20bool process_joystick(uint16_t keycode, keyrecord_t *record) {
21 switch (keycode) { 21 switch (keycode) {
22 case JS_BUTTON0 ... JS_BUTTON_MAX: 22 case QK_JOYSTICK_BUTTON_MIN ... QK_JOYSTICK_BUTTON_MAX:
23 if (record->event.pressed) { 23 if (record->event.pressed) {
24 register_joystick_button(keycode - JS_BUTTON0); 24 register_joystick_button(keycode - QK_JOYSTICK_BUTTON_MIN);
25 } else { 25 } else {
26 unregister_joystick_button(keycode - JS_BUTTON0); 26 unregister_joystick_button(keycode - QK_JOYSTICK_BUTTON_MIN);
27 } 27 }
28 return false; 28 return false;
29 } 29 }
diff --git a/quantum/process_keycode/process_programmable_button.c b/quantum/process_keycode/process_programmable_button.c
index 6379698848..d6a14e120c 100644
--- a/quantum/process_keycode/process_programmable_button.c
+++ b/quantum/process_keycode/process_programmable_button.c
@@ -19,8 +19,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
19#include "programmable_button.h" 19#include "programmable_button.h"
20 20
21bool process_programmable_button(uint16_t keycode, keyrecord_t *record) { 21bool process_programmable_button(uint16_t keycode, keyrecord_t *record) {
22 if (keycode >= PROGRAMMABLE_BUTTON_MIN && keycode <= PROGRAMMABLE_BUTTON_MAX) { 22 if (keycode >= QK_PROGRAMMABLE_BUTTON_MIN && keycode <= QK_PROGRAMMABLE_BUTTON_MAX) {
23 uint8_t button = keycode - PROGRAMMABLE_BUTTON_MIN + 1; 23 uint8_t button = keycode - QK_PROGRAMMABLE_BUTTON_MIN + 1;
24 if (record->event.pressed) { 24 if (record->event.pressed) {
25 programmable_button_register(button); 25 programmable_button_register(button);
26 } else { 26 } else {