summaryrefslogtreecommitdiff
path: root/keyboards/arrayperipherals
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2025-07-12 03:05:41 +1000
committerGitHub <noreply@github.com>2025-07-11 11:05:41 -0600
commit6b38dc17cd12b740b45b56c67ad04bb428f3bddb (patch)
treea5e39f81fc4fec4eeeff027c059051e7f82a28de /keyboards/arrayperipherals
parent71b88b333d0bf000201ef588101e501f2d386575 (diff)
Remove deprecated `RGB_` and Mouse keycodes (#25444)
* Remove deprecated `RGB_` and Mouse keycodes * Update old mouse keycodes, 0-9/A-M * Update old mouse keycodes, N-Z & layouts * Missed some stuff
Diffstat (limited to 'keyboards/arrayperipherals')
-rw-r--r--keyboards/arrayperipherals/1x4p1/keymaps/default/keymap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/arrayperipherals/1x4p1/keymaps/default/keymap.c b/keyboards/arrayperipherals/1x4p1/keymaps/default/keymap.c
index 5318b16df5..dc4e21127a 100644
--- a/keyboards/arrayperipherals/1x4p1/keymaps/default/keymap.c
+++ b/keyboards/arrayperipherals/1x4p1/keymaps/default/keymap.c
@@ -20,9 +20,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
20bool encoder_update_user(uint8_t index, bool clockwise) { 20bool encoder_update_user(uint8_t index, bool clockwise) {
21 if (index == 0) { /* First encoder */ 21 if (index == 0) { /* First encoder */
22 if (clockwise) { 22 if (clockwise) {
23 tap_code(KC_MS_WH_UP); 23 tap_code(MS_WHLU);
24 } else { 24 } else {
25 tap_code(KC_MS_WH_DOWN); 25 tap_code(MS_WHLD);
26 } 26 }
27 } 27 }
28 return true; 28 return true;