mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
new PBD::DEBUG API changes for Waves backend
This commit is contained in:
parent
da3df9c1d1
commit
93a64cb4fc
1 changed files with 2 additions and 2 deletions
|
|
@ -48,7 +48,7 @@ WavesMidiEvent::WavesMidiEvent (PmTimestamp timestamp, const uint8_t* data, size
|
|||
memcpy (_data, data, datalen);
|
||||
|
||||
#ifndef NDEBUG
|
||||
if (DEBUG::WavesMIDI & PBD::debug_bits) {
|
||||
if (DEBUG_ENABLED (DEBUG::WavesMIDI)) {
|
||||
DEBUG_STR_DECL(a);
|
||||
for (size_t i=0; i < datalen; ++i) {
|
||||
DEBUG_STR_APPEND(a,std::hex);
|
||||
|
|
@ -76,7 +76,7 @@ WavesMidiEvent::WavesMidiEvent (const WavesMidiEvent& source)
|
|||
memcpy (_data, source.const_data (), source.size ());
|
||||
|
||||
#ifndef NDEBUG
|
||||
if (DEBUG::WavesMIDI & PBD::debug_bits) {
|
||||
if (DEBUG_ENABLED (DEBUG::WavesMIDI)) {
|
||||
DEBUG_STR_DECL(a);
|
||||
for (size_t i=0; i < source.size(); ++i) {
|
||||
DEBUG_STR_APPEND(a,std::hex);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue