summaryrefslogtreecommitdiff
path: root/keyboards/p3d
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2024-05-20 17:11:49 +1000
committerGitHub <noreply@github.com>2024-05-20 17:11:49 +1000
commit5fda3490187a7448176b7d37bf16c1cd1d80b736 (patch)
tree23a5211be52919c9fc8b8981c6b53870c6a6cf54 /keyboards/p3d
parent48c0b601412513c83e31bd818c1ce2127682d567 (diff)
Remove RGB keycodes from boards with no RGB config (#23709)
Diffstat (limited to 'keyboards/p3d')
-rw-r--r--keyboards/p3d/glitch/glitch.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/keyboards/p3d/glitch/glitch.c b/keyboards/p3d/glitch/glitch.c
index 6680e6506a..6ce1cf6e2e 100644
--- a/keyboards/p3d/glitch/glitch.c
+++ b/keyboards/p3d/glitch/glitch.c
@@ -21,10 +21,8 @@ bool encoder_update_kb(uint8_t index, bool clockwise) {
21 return false; 21 return false;
22 } 22 }
23 if (clockwise) { 23 if (clockwise) {
24 // tap_code(RGB_MOD);
25 rgblight_step(); 24 rgblight_step();
26 } else { 25 } else {
27 // tap_code(RGB_RMOD);
28 rgblight_step_reverse(); 26 rgblight_step_reverse();
29 } 27 }
30 28