Merge remote-tracking branch 'origin/develop' into xap

This commit is contained in:
QMK Bot 2025-06-12 12:44:33 +00:00
commit 7b45c3419c

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