mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-09 23:25:43 +01:00
OSC: Fix forward detection to include >0 and <1
This commit is contained in:
parent
b36192aba8
commit
c2f5abc91e
1 changed files with 1 additions and 1 deletions
|
|
@ -341,7 +341,7 @@ OSCGlobalObserver::send_transport_state_changed()
|
|||
lo_message_free (msg);
|
||||
|
||||
msg = lo_message_new ();
|
||||
lo_message_add_int32 (msg, session->transport_speed() > 1.0);
|
||||
lo_message_add_int32 (msg, (session->transport_speed() != 1.0 && session->transport_speed() > 0.0));
|
||||
lo_send_message (addr, "/ffwd", msg);
|
||||
lo_message_free (msg);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue