From cf4cfb50fcaaed530a01a0d3190c6f6ac8e2aa15 Mon Sep 17 00:00:00 2001 From: Ryzerth Date: Sun, 18 Apr 2021 01:04:50 +0200 Subject: [PATCH] Even more fixes --- core/src/dsp/resampling.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/dsp/resampling.h b/core/src/dsp/resampling.h index 32041b73..9aff95b5 100644 --- a/core/src/dsp/resampling.h +++ b/core/src/dsp/resampling.h @@ -104,7 +104,7 @@ namespace dsp { } { - std::lock_guard lck(ctrlMtx); + std::lock_guard lck(generic_block>::ctrlMtx); int outCount = calcOutSize(count); memcpy(&buffer[tapsPerPhase], _in->readBuf, count * sizeof(T)); _in->flush();