fix behavior of duration clocks when scrolling in all modes except BBT

This commit is contained in:
Paul Davis 2022-12-07 11:12:58 -07:00
parent 4beca98e28
commit 9f85a0aaba

View file

@ -1974,7 +1974,7 @@ AudioClock::current_duration (timepos_t pos) const
case MinSec:
case Seconds:
case Samples:
ret = timecnt_t (last_when(), pos);
ret = last_time;
break;
}