Skip to content

Commit 31a823e

Browse files
committed
Spider - fix bug in midi_sysex caused by missing comma
1 parent 8035da1 commit 31a823e

File tree

1 file changed

+1
-1
lines changed
  • app/server/ruby/lib/sonicpi/lang

1 file changed

+1
-1
lines changed

app/server/ruby/lib/sonicpi/lang/midi.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1599,7 +1599,7 @@ def __midi_send_timed_param_4(path, a, b, c, d)
15991599

16001600
def __midi_send_timed_param_n(path, *args)
16011601
t = __get_spider_schedule_time
1602-
@tau_api.send_midi_at(t, path *args)
1602+
@tau_api.send_midi_at(t, path, *args)
16031603
end
16041604

16051605
def __midi_message(m)

0 commit comments

Comments
 (0)