summaryrefslogtreecommitdiff
path: root/libs/ardour/session.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-02-02 22:35:50 +0000
committerCarl Hetherington <carl@carlh.net>2009-02-02 22:35:50 +0000
commit762b02bc9586b06665564b8170bb9b274c39df94 (patch)
tree89df80950f7434e49e8f4018baf37ba5967a6ff6 /libs/ardour/session.cc
parent54afc94e62b6397286d545744cea796f93f4b5f9 (diff)
Fix auto-return, hopefully not at the expense of anything else.
git-svn-id: svn://localhost/ardour2/branches/3.0@4482 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/session.cc')
-rw-r--r--libs/ardour/session.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc
index ed5ff668aa..77b0d2bf2b 100644
--- a/libs/ardour/session.cc
+++ b/libs/ardour/session.cc
@@ -1209,10 +1209,6 @@ Session::audible_frame () const
nframes_t offset;
nframes_t tf;
- if (_transport_speed == 0.0f && non_realtime_work_pending()) {
- return last_stop_frame;
- }
-
/* the first of these two possible settings for "offset"
mean that the audible frame is stationary until
audio emerges from the latency compensation
@@ -1259,7 +1255,6 @@ Session::audible_frame () const
if (!play_loop || !have_looped) {
if (tf < _last_roll_location + offset) {
return _last_roll_location;
-
}
}