Skip to content

Commit

Permalink
fix(extOSC): fixed Address Masks example
Browse files Browse the repository at this point in the history
  • Loading branch information
Iam1337 committed Jul 26, 2021
1 parent 5a8b8e1 commit f36cbbd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public void SendFirst(float value)

public void SendSecond(float value)
{
var message = new OSCMessage(_firstSlider, OSCValue.Float(value));
var message = new OSCMessage(_secondSlider, OSCValue.Float(value));

Transmitter.Send(message);
TransmitterTextSecond.text = value.ToString();
Expand Down

0 comments on commit f36cbbd

Please sign in to comment.