freesound: add a DebugBit

Add a new DebugBit value for Freesound
This commit is contained in:
Colin Fletcher 2022-05-16 18:10:34 +01:00
parent e1f5fb0206
commit c4307667fb
2 changed files with 2 additions and 0 deletions

View File

@ -107,6 +107,7 @@ namespace PBD {
LIBARDOUR_API extern DebugBits VST3Process;
LIBARDOUR_API extern DebugBits VSTCallbacks;
LIBARDOUR_API extern DebugBits WiimoteControl;
LIBARDOUR_API extern DebugBits Freesound;
}
}

View File

@ -102,3 +102,4 @@ PBD::DebugBits PBD::DEBUG::VST3Config = PBD::new_debug_bit ("VST3Config");
PBD::DebugBits PBD::DEBUG::VST3Process = PBD::new_debug_bit ("VST3Process");
PBD::DebugBits PBD::DEBUG::VSTCallbacks = PBD::new_debug_bit ("vstcallbacks");
PBD::DebugBits PBD::DEBUG::WiimoteControl = PBD::new_debug_bit ("wiimotecontrol");
PBD::DebugBits PBD::DEBUG::Freesound = PBD::new_debug_bit ("freesound");