Also filter out the event with opcode 52

Not sure what this is, but it's called by Bitwig every time a buffer is
being processed.
This commit is contained in:
Robbert van der Helm
2020-04-28 12:04:09 +02:00
parent 8adb944445
commit 641351d525
3 changed files with 10 additions and 9 deletions
+2 -2
View File
@@ -255,8 +255,8 @@ bool Logger::should_filter_event(bool is_dispatch, int opcode) {
// Filter out log messages related to these events by default since they are
// called tens of times per second
// TODO: Figure out what opcode 52 is and filter that out as well
if ((is_dispatch && opcode == effEditIdle) ||
// TODO: Figure out what opcode 52 is
if ((is_dispatch && (opcode == effEditIdle || opcode == 52)) ||
(!is_dispatch && opcode == audioMasterGetTime)) {
return true;
}