Fix warning in WootingV1KeyboardController

This commit is contained in:
Adam Honse
2026-03-02 23:01:29 -06:00
parent 99da577c41
commit 7fdb006465

View File

@@ -98,7 +98,7 @@ void WootingV1KeyboardController::SendDirect(RGBColor* colors, uint8_t colour_co
unsigned char buffer3[RGB_RAW_BUFFER_SIZE] = {0};
unsigned char buffer4[RGB_RAW_BUFFER_SIZE] = {0};
for(std::size_t index = 0; index < colour_count; index++)
for(uint8_t index = 0; index < colour_count; index++)
{
unsigned char row = index / WOOTING_RGB_COLUMNS;
unsigned char col = index % WOOTING_RGB_COLUMNS;