From 93cafe7109302a1eadba1c11fc0963349a601594 Mon Sep 17 00:00:00 2001 From: AlexandreRouma Date: Mon, 22 Jan 2024 19:22:26 +0100 Subject: [PATCH] fix typo referenced in #1083 --- core/src/dsp/chain.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/dsp/chain.h b/core/src/dsp/chain.h index 21e2a588..a3f5dc04 100644 --- a/core/src/dsp/chain.h +++ b/core/src/dsp/chain.h @@ -93,7 +93,7 @@ namespace dsp { void disableBlock(Processor* block, Func onOutputChange) { // Check that the block is part of the chain if (!blockExists(block)) { - throw std::runtime_error("[chain] Tried to enable a block that isn't part of the chain"); + throw std::runtime_error("[chain] Tried to disable a block that isn't part of the chain"); } // If already disabled, don't do anything