diff options
-rwxr-xr-x | osc/unpackOSC.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/osc/unpackOSC.c b/osc/unpackOSC.c index 0cf3258..c4b39d1 100755 --- a/osc/unpackOSC.c +++ b/osc/unpackOSC.c @@ -621,7 +621,8 @@ static t_float unpackOSC_DeltaTime(OSCTimeTag tt) ttusec = tt.seconds*onemillion + ONE_MILLION_OVER_TWO_TO_THE_32*tt.fraction; nowusec = ttnow.seconds*onemillion + tv.tv_usec; /* subtract now from tt to get delta time */ - if (ttusec < nowusec) return 0.0; + /* if (ttusec < nowusec) return 0.0; */ + /*negative delays are all right */ delta = ttusec - nowusec; return (float)(delta*0.001f); } |