* second part of the last fix

git-svn-id: svn://localhost/ardour2/branches/3.0@4549 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Hans Baier
2009-02-14 07:21:01 +00:00
parent 90ee153fc1
commit e9fde9baa7

View File

@@ -248,9 +248,10 @@ MIDIClock_Slave::stop (Parser& parser, nframes_t timestamp)
// find out the last MIDI beat: go back #midi_clocks mod 6
// and lets hope the tempo didnt change in those last 6 beats :)
stop_position -= (midi_clock_count % 6) * one_ppqn_in_frames;
stop_position -= (midi_clock_count % 6) * one_ppqn_in_frames;
session.request_locate(stop_position, false);
should_be_position = stop_position;
last_timestamp = 0;
}
}