fix winry25tc lightsout keymap (#25353)

This commit is contained in:
ClownFish 2025-06-12 08:43:15 -04:00 committed by GitHub
parent f4aa8ae845
commit 8ae01715d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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