aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQMK Bot2025-06-12 14:43:50 +0200
committerQMK Bot2025-06-12 14:43:50 +0200
commite725cdbc4b2c102ae19d3bcd03d1ed4ee8213078 (patch)
treee88254d352b325867583a0c23fb9e45b2db53220
parent9ef5dcd11382e1151c9cb571d353246ee082c03b (diff)
parent8ae01715d63a06c32578ee99c5fefb2c5f69e95d (diff)
Merge remote-tracking branch 'origin/master' into develop
-rw-r--r--keyboards/winry/winry25tc/keymaps/lightsout/keymap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/winry/winry25tc/keymaps/lightsout/keymap.c b/keyboards/winry/winry25tc/keymaps/lightsout/keymap.c
index f175f36b91..4e22b6b751 100644
--- a/keyboards/winry/winry25tc/keymaps/lightsout/keymap.c
+++ b/keyboards/winry/winry25tc/keymaps/lightsout/keymap.c
@@ -82,9 +82,9 @@ void refresh_leds(void) {
uint8_t tile = tiles[x][y];
uint8_t index = (y * 5) + x;
if (tile) {
- setrgb(RGB_RED, &led[remap[index]]);
+ rgblight_setrgb_at(RGB_RED, remap[index]);
} else {
- setrgb(RGB_WHITE, &led[remap[index]]);
+ rgblight_setrgb_at(RGB_WHITE, remap[index]);
}
}
}