summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--quantum/rgb_matrix.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/quantum/rgb_matrix.c b/quantum/rgb_matrix.c
index a1193d4c07..3e49f9fc0a 100644
--- a/quantum/rgb_matrix.c
+++ b/quantum/rgb_matrix.c
@@ -511,7 +511,12 @@ void rgb_matrix_set_suspend_state(bool state) {
}
void rgb_matrix_toggle(void) {
+#ifdef RGB_MATRIX_EXTRA_TOG
rgb_matrix_config.enable++;
+#else
+ rgb_matrix_config.enable ^= 1;
+ if (rgb_matrix_config.enable > 1) { rgb_matrix_config.enable = 0; } // make sure that if we are treating this as a bool, that it is only 1 or 0.
+#endif
if (!rgb_matrix_config.enable) {
rgb_task_state = STARTING;
}