From f39bcaa4bfe0a6aed097f669f039ae2efcc2642f Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 22 Sep 2018 08:50:16 -0400 Subject: Revert "MSVC complains because we're using 'fabs()' to compare 2 x integers" You can't remove an abs() conversion and keep the same semantics. This reverts commit d89b8cc0ad01eaf59dc605939628003dfa89899d. --- libs/ardour/session_process.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/session_process.cc b/libs/ardour/session_process.cc index 720104c419..04f2d3f77e 100644 --- a/libs/ardour/session_process.cc +++ b/libs/ardour/session_process.cc @@ -1084,7 +1084,7 @@ Session::follow_transport_master (pframes_t nframes) if (transport_master_tracking_state == Running) { - if (!actively_recording() && delta > tmm.current()->resolution()) { + if (!actively_recording() && fabs (delta) > tmm.current()->resolution()) { DEBUG_TRACE (DEBUG::Slave, string_compose ("average slave delta %1 greater than slave resolution %2\n", delta, tmm.current()->resolution())); if (micro_locate (-delta) != 0) { DEBUG_TRACE (DEBUG::Slave, "micro-locate didn't work, set no disk output true\n"); -- cgit v1.2.3