mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-09 15:15:41 +01:00
temporal: fix error in operator>> for BBT_offset
This commit is contained in:
parent
dcfbdb482d
commit
7dba843cb4
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ std::operator>>(std::istream& i, Temporal::BBT_Offset& bbt)
|
|||
i >> skip_pipe_char;
|
||||
i >> t;
|
||||
|
||||
bbt = Temporal::BBT_Time (B, b, t);
|
||||
bbt = Temporal::BBT_Offset (B, b, t);
|
||||
|
||||
return i;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue