mirror of
https://github.com/sudoxnym/open-hyperion.git
synced 2026-04-14 19:46:39 +00:00
Fix universe offset by one
This commit is contained in:
parent
4abae6fc7a
commit
3a26bf91d4
1 changed files with 1 additions and 1 deletions
|
|
@ -364,7 +364,7 @@ void OpenRGBE131ReceiverDialog::E131ReceiverThreadFunction()
|
|||
| If received packet is from a valid universe, |
|
||||
| update the corresponding devices |
|
||||
\*-------------------------------------------------*/
|
||||
unsigned int universe = ntohs(packet.frame.universe) - 1;
|
||||
unsigned int universe = ntohs(packet.frame.universe);
|
||||
|
||||
for(unsigned int universe_idx = 0; universe_idx < universe_list.size(); universe_idx++)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue