mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-29 16:33:14 +01:00
fix stupid thinko in varispeed limitation for record enable
git-svn-id: svn://localhost/ardour2/branches/3.0@9980 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
a8449db466
commit
11d041f6c0
1 changed files with 1 additions and 1 deletions
|
|
@ -985,7 +985,7 @@ Session::handle_locations_changed (Locations::LocationList& locations)
|
|||
void
|
||||
Session::enable_record ()
|
||||
{
|
||||
if (_transport_speed != 0.0 || _transport_speed != 1.0) {
|
||||
if (_transport_speed != 0.0 && _transport_speed != 1.0) {
|
||||
/* no recording at anything except normal speed */
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue