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 d89b8cc0ad
.
This commit is contained in:
parent
62f29d6c44
commit
f39bcaa4bf
@ -1084,7 +1084,7 @@ Session::follow_transport_master (pframes_t nframes)
|
|||||||
|
|
||||||
if (transport_master_tracking_state == Running) {
|
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()));
|
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) {
|
if (micro_locate (-delta) != 0) {
|
||||||
DEBUG_TRACE (DEBUG::Slave, "micro-locate didn't work, set no disk output true\n");
|
DEBUG_TRACE (DEBUG::Slave, "micro-locate didn't work, set no disk output true\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user