13
0

clarify bbt_at_frame() warning.

This commit is contained in:
nick_m 2016-11-09 00:49:31 +11:00
parent b025f8e42a
commit 35ec9b33cf

View File

@ -2152,7 +2152,7 @@ TempoMap::bbt_at_frame (framepos_t frame)
bbt.bars = 1; bbt.bars = 1;
bbt.beats = 1; bbt.beats = 1;
bbt.ticks = 0; bbt.ticks = 0;
warning << string_compose (_("tempo map asked for BBT time at frame %1\n"), frame) << endmsg; warning << string_compose (_("tempo map was asked for BBT time at frame %1\n"), frame) << endmsg;
return bbt; return bbt;
} }
Glib::Threads::RWLock::ReaderLock lm (lock); Glib::Threads::RWLock::ReaderLock lm (lock);