mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 21:55:43 +01:00
fix thinko when testing for internal seek with negative distance
This commit is contained in:
parent
cbb7f6d863
commit
f52781b46b
1 changed files with 1 additions and 1 deletions
|
|
@ -164,7 +164,7 @@ public:
|
|||
return read_space() >= cnt;
|
||||
}
|
||||
else if (cnt < 0) {
|
||||
return g_atomic_int_get (&reserved) >= cnt;
|
||||
return g_atomic_int_get (&reserved) >= -cnt;
|
||||
}
|
||||
else {
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue