From 969749e41d371e069ab7b9c809809bda1c180441 Mon Sep 17 00:00:00 2001 From: gcielniak Date: Mon, 22 Apr 2024 19:53:23 +0100 Subject: [PATCH] Enables volume envelopes in the noise channel of the VSU in VirtualBoy. --- src/engine/platform/vb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/platform/vb.cpp b/src/engine/platform/vb.cpp index b0f2443d9..c47bbdd31 100644 --- a/src/engine/platform/vb.cpp +++ b/src/engine/platform/vb.cpp @@ -324,7 +324,7 @@ int DivPlatformVB::dispatch(DivCommand c) { chan[c.chan].envHigh&=~3; chan[c.chan].envHigh|=(c.value>>4)&3; chan[c.chan].envLow=c.value&15; - writeEnv(c.chan); + writeEnv(c.chan,true); break; case DIV_CMD_FDS_MOD_DEPTH: // set modulation if (c.chan!=4) break;