13
0

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:
Rodrigo Severo 2012-06-13 03:09:46 +00:00
parent 335bf3d21e
commit 1bd34a34f7

View File

@ -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();
}