From d77bceb821c04463cfa2f59b233f03c0eeb1ebfc Mon Sep 17 00:00:00 2001 From: PJB3005 Date: Thu, 12 Mar 2026 11:48:55 +0100 Subject: [PATCH] nop JASDsp::releaseHalt --- libs/JSystem/src/JAudio2/JASDSPInterface.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/JSystem/src/JAudio2/JASDSPInterface.cpp b/libs/JSystem/src/JAudio2/JASDSPInterface.cpp index e8d7fe050c..a4c91b103c 100644 --- a/libs/JSystem/src/JAudio2/JASDSPInterface.cpp +++ b/libs/JSystem/src/JAudio2/JASDSPInterface.cpp @@ -50,6 +50,10 @@ void JASDsp::boot(void (*param_0)(void*)) { } void JASDsp::releaseHalt(u32 param_0) { +#if TARGET_PC + // Dusk DSP does not work incrementally. + return; +#endif DSPReleaseHalt2(param_0); }