Skip to content

Commit

Permalink
fix: incorrect synapse led alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewBabbitt97 authored Jul 17, 2024
1 parent c72e782 commit f12eef4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ChromaControl.SDK.Synapse/SynapseService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ private unsafe SynapseResult OnEventNotification(SynapseEventType type, nint pDa
Color.FromArgb(span[7], span[4], span[5], span[6]),
Color.FromArgb(span[11], span[8], span[9], span[10]),
Color.FromArgb(span[15], span[12], span[13], span[14]),
Color.FromArgb(span[10], span[16], span[17], span[18]),
Color.FromArgb(span[19], span[16], span[17], span[18]),
};

ColorsReceived?.Invoke(this, colors);
Expand Down

0 comments on commit f12eef4

Please sign in to comment.