Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GlowSequencer/Usb/CommunicationUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public ushort Address
}
set
{
if(command == 0x02 && value < 16384)
if(command is 0x03 or 0x02 && value < 16384)
{
throw new ArgumentOutOfRangeException("Address must be greater than 0x0040 (16384) for command 0x02");
}
Expand Down