AudioClock: drop unused offset

Recent refactorigns made it dead code. Kill it, even though it seems on
track to something useful ...
This commit is contained in:
Mads Kiilerich 2022-11-06 16:34:03 +01:00
parent 1ca64eb8c1
commit 8c74099e80
2 changed files with 1 additions and 4 deletions

View file

@ -101,7 +101,7 @@ timepos_t
MainClock::absolute_time () const
{
if (get_is_duration ()) {
return current_time () + offset ();
return current_time ();
} else {
return current_time ();
}