From 73d09e7c1c3a921e5045a278e5ac3aa2baafd24c Mon Sep 17 00:00:00 2001 From: Adam Honse Date: Fri, 25 Jul 2025 00:30:37 -0500 Subject: [PATCH] Fix HYTE Nexus Portal NP50 --- Controllers/HYTENexusController/HYTENexusController.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controllers/HYTENexusController/HYTENexusController.cpp b/Controllers/HYTENexusController/HYTENexusController.cpp index 52c8ed69..43873b23 100644 --- a/Controllers/HYTENexusController/HYTENexusController.cpp +++ b/Controllers/HYTENexusController/HYTENexusController.cpp @@ -198,7 +198,7 @@ void HYTENexusController::LEDStreaming(unsigned char channel, unsigned short led | The HYTE THICC Q60 requires 90 bytes to be sent for | | the 4th channel (logo) even though it only has 4 LEDs | \*-----------------------------------------------------*/ - unsigned char bytes_to_send = ((led_count * 3) + 7); + unsigned int bytes_to_send = ((led_count * 3) + 7); if((device_pid == HYTE_THICC_Q60_PID) && (channel == 3)