Small change to Timecode display (SMTPE) in the Mackie.
git-svn-id: svn://localhost/ardour2/branches/3.0@12694 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
335bf3d21e
commit
1bd34a34f7
@ -789,12 +789,12 @@ MackieControlProtocol::format_timecode_timecode (framepos_t now_frame)
|
||||
// digits: 888/88/88/888
|
||||
// Timecode mode: Hours/Minutes/Seconds/Frames
|
||||
ostringstream os;
|
||||
os << ' ';
|
||||
os << setw(2) << setfill('0') << timecode.hours;
|
||||
os << ' ';
|
||||
os << setw(2) << setfill('0') << timecode.minutes;
|
||||
os << setw(2) << setfill('0') << timecode.seconds;
|
||||
os << setw(2) << setfill('0') << timecode.frames;
|
||||
os << ' ';
|
||||
os << setw(2) << setfill('0') << timecode.frames;
|
||||
|
||||
return os.str();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user