From 11d041f6c021b70dd245fd41e9f167cb0f36c96e Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 11 Aug 2011 17:36:42 +0000 Subject: [PATCH] fix stupid thinko in varispeed limitation for record enable git-svn-id: svn://localhost/ardour2/branches/3.0@9980 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/session.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index e2a69d1a08..aea3df2b95 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -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; }