mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 16:46:35 +01:00
fix boolean logic PART TWO when trying to avoid complete_refill heuristic
This commit is contained in:
parent
1c82fc4879
commit
76b6c5ebfd
1 changed files with 2 additions and 2 deletions
|
|
@ -762,8 +762,8 @@ DiskReader::seek (samplepos_t sample, bool complete_refill)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((!_last_read_reversed || (_last_read_reversed != read_reversed)) ||
|
if ((!_last_read_reversed || (_last_read_reversed == read_reversed)) ||
|
||||||
(!_last_read_loop || (_last_read_loop != read_loop))) {
|
(!_last_read_loop || (_last_read_loop == read_loop))) {
|
||||||
|
|
||||||
/* We do these things only if we're still reading in the same
|
/* We do these things only if we're still reading in the same
|
||||||
* direction we did last time.
|
* direction we did last time.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue