summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
authorJesse Chappell <jesse@essej.net>2007-04-09 00:54:39 +0000
committerJesse Chappell <jesse@essej.net>2007-04-09 00:54:39 +0000
commitbe02eafef023ef21766abb3d684de74ea88d41b0 (patch)
tree216c0f49c04f5dafc3370a91e3aa73d1770b0062 /libs/ardour
parent241af666ae155b8ebbdb10fb61f0d7cc2bc4c32d (diff)
fixed previous fix of initial autoplay issue, autoplay now works again
git-svn-id: svn://localhost/ardour2/trunk@1686 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/session_transport.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/session_transport.cc b/libs/ardour/session_transport.cc
index 950d74edec..e4811ca18d 100644
--- a/libs/ardour/session_transport.cc
+++ b/libs/ardour/session_transport.cc
@@ -639,7 +639,7 @@ Session::locate (nframes_t target_frame, bool with_roll, bool with_flush, bool w
}
}
- if (transport_rolling() && (!auto_play_legal || Config->get_auto_play()) && !with_roll && !(synced_to_jack() && play_loop)) {
+ if (transport_rolling() && (!auto_play_legal || !Config->get_auto_play()) && !with_roll && !(synced_to_jack() && play_loop)) {
realtime_stop (false);
}