mirror of
https://github.com/vale981/openAV-Luppp
synced 2025-03-05 09:01:39 -05:00
Fixed Error info on timing
This commit is contained in:
parent
883ab99542
commit
acbd5169de
1 changed files with 1 additions and 1 deletions
|
@ -188,7 +188,7 @@ void TimeManager::process(Buffers* buffers)
|
|||
int before=(beatCounter*fpb)%nframes;
|
||||
int after=nframes-before;
|
||||
|
||||
if ( before < nframes && after < nframes && before + after == nframes )
|
||||
if ( before < nframes && after <= nframes && before + after == nframes )
|
||||
{
|
||||
char buffer [50];
|
||||
// sprintf (buffer, "Timing OK: before %i, after %i, b+a %i", before, after, before+after );
|
||||
|
|
Loading…
Add table
Reference in a new issue