add a delta sign to the slave delta display.

git-svn-id: svn://localhost/ardour2/branches/3.0@13423 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Robin Gareus 2012-11-10 20:00:24 +00:00
parent cbc8c6b7cf
commit 8216e35c5b
3 changed files with 3 additions and 3 deletions

View file

@ -680,7 +680,7 @@ MTC_Slave::approximate_current_delta() const
snprintf(delta, sizeof(delta), "\u2012\u2012\u2012\u2012");
} else {
// TODO if current_delta > 1 frame -> display timecode.
snprintf(delta, sizeof(delta), "%s%4" PRIi64 " sm",
snprintf(delta, sizeof(delta), "\u0394 %s%4" PRIi64 " sm",
PLUSMINUS(-current_delta), abs(current_delta));
}
return std::string(delta);