From 9335fea3a3c78033273034e6ccdd44e81b9876c9 Mon Sep 17 00:00:00 2001 From: Paul Ferrand Date: Sat, 20 Nov 2021 09:35:01 +0100 Subject: [PATCH] Correct the destination of dispatch timings in performHdcc --- src/sfizz/Synth.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sfizz/Synth.cpp b/src/sfizz/Synth.cpp index c05c53fb..e9f99d6a 100644 --- a/src/sfizz/Synth.cpp +++ b/src/sfizz/Synth.cpp @@ -1406,7 +1406,7 @@ void Synth::Impl::performHdcc(int delay, int ccNumber, float normValue, bool asM ASSERT(ccNumber < config::numCCs); ASSERT(ccNumber >= 0); - ScopedTiming logger { callbackBreakdown_.dispatch, ScopedTiming::Operation::addToDuration }; + ScopedTiming logger { dispatchDuration_, ScopedTiming::Operation::addToDuration }; changedCCsThisCycle_.set(ccNumber);