logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git
commit: 8ae01715d63a06c32578ee99c5fefb2c5f69e95d
parent f4aa8ae845c0920d89e2e9f9bcbf6f56e7c6003a
Author: ClownFish <177758267+clownfish-og@users.noreply.github.com>
Date:   Thu, 12 Jun 2025 08:43:15 -0400

fix winry25tc lightsout keymap (#25353)


Diffstat:

Mkeyboards/winry/winry25tc/keymaps/lightsout/keymap.c4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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]); } } }