Skip to content

Commit

Permalink
Server Midi - fix API call to midi stop/start cues
Browse files Browse the repository at this point in the history
  • Loading branch information
samaaron committed Jun 19, 2024
1 parent 34a3b27 commit 01f13a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/server/ruby/lib/sonicpi/tau_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -221,11 +221,11 @@ def link_current_time_and_beat(quantise_beat=true)
end

def midi_system_start!
@tau_comms.send("/stop-start-midi-cues", 1)
@tau_comms.send("/stop-start-midi-cues", true)
end

def midi_system_stop!
@tau_comms.send("/stop-start-midi-cues", 0)
@tau_comms.send("/stop-start-midi-cues", false)
end

def start_stop_cue_server!(stop)
Expand Down

0 comments on commit 01f13a5

Please sign in to comment.