mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
Fix compilation with DEBUG_SEQUENCE on.
git-svn-id: svn://localhost/ardour2/branches/3.0@5883 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
03b0d3f328
commit
7524b90985
1 changed files with 2 additions and 2 deletions
|
|
@ -391,7 +391,7 @@ Sequence<Time>::Sequence(const TypeMap& type_map)
|
|||
, _lowest_note(127)
|
||||
, _highest_note(0)
|
||||
{
|
||||
DUMP(format("Sequence (size %1%) constructed: %2%\n") % size % this);
|
||||
DUMP(format("Sequence constructed: %1%\n") % this);
|
||||
assert(_end_iter._is_end);
|
||||
assert( ! _end_iter._lock);
|
||||
}
|
||||
|
|
@ -664,7 +664,7 @@ Sequence<Time>::append_note_off_unlocked(uint8_t chan, Time time, uint8_t note_n
|
|||
assert(time >= note->time());
|
||||
note->set_length(time - note->time());
|
||||
_write_notes[chan].erase(n);
|
||||
DUMP(format("resolved note, length: %1%\n") % note.length());
|
||||
DUMP(format("resolved note, length: %1%\n") % note->length());
|
||||
resolved = true;
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue