summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-11-24 23:20:39 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2015-11-24 23:20:39 -0500
commit35577f439d3ca8b4e9b5e5788fe7eca90a9c2247 (patch)
treec925ce14fbad86289ad8538308ab308cd874e90e /libs/ardour
parent2ea4d5c7b56d097c17d1688d499b98a4a7c5fc2d (diff)
add debug "bits" for FaderPort
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/ardour/debug.h3
-rw-r--r--libs/ardour/debug.cc1
2 files changed, 3 insertions, 1 deletions
diff --git a/libs/ardour/ardour/debug.h b/libs/ardour/ardour/debug.h
index d7cb27f6c1..6ebf21a958 100644
--- a/libs/ardour/ardour/debug.h
+++ b/libs/ardour/ardour/debug.h
@@ -75,7 +75,8 @@ namespace PBD {
LIBARDOUR_API extern DebugBits BackendTiming;
LIBARDOUR_API extern DebugBits BackendThreads;
LIBARDOUR_API extern DebugBits BackendPorts;
- LIBARDOUR_API extern DebugBits VSTCallbacks;;
+ LIBARDOUR_API extern DebugBits VSTCallbacks;
+ LIBARDOUR_API extern DebugBits FaderPort;
}
}
diff --git a/libs/ardour/debug.cc b/libs/ardour/debug.cc
index 54b6741683..86afaf6917 100644
--- a/libs/ardour/debug.cc
+++ b/libs/ardour/debug.cc
@@ -73,3 +73,4 @@ PBD::DebugBits PBD::DEBUG::BackendTiming = PBD::new_debug_bit ("backendtiming");
PBD::DebugBits PBD::DEBUG::BackendThreads = PBD::new_debug_bit ("backendthreads");
PBD::DebugBits PBD::DEBUG::BackendPorts = PBD::new_debug_bit ("backendports");
PBD::DebugBits PBD::DEBUG::VSTCallbacks = PBD::new_debug_bit ("vstcallbacks");
+PBD::DebugBits PBD::DEBUG::FaderPort = PBD::new_debug_bit ("faderport");