From 4a4eff4043e97ebc414f5086e7509f940ce50f5c Mon Sep 17 00:00:00 2001 From: nyanpasu64 Date: Sat, 4 Sep 2021 22:49:28 -0700 Subject: [PATCH] In S-DSP properties, show "Envelope Output" at full bit depth --- bsnes/snes/dsp/debugger/debugger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsnes/snes/dsp/debugger/debugger.cpp b/bsnes/snes/dsp/debugger/debugger.cpp index 92a09653..8664a678 100644 --- a/bsnes/snes/dsp/debugger/debugger.cpp +++ b/bsnes/snes/dsp/debugger/debugger.cpp @@ -60,7 +60,7 @@ bool DSPDebugger::property(unsigned id, string &name, string &value) { ? ((unsigned)read((i << 4) + 0x07) & 0x1f) : ((unsigned)read((i << 4) + 0x07) & 0x7f)); - item("Envelope Output", (unsigned)read((i << 4) + 0x08)); + item("Envelope Output", voice[i].env); item("Sample Output", (unsigned)read((i << 4) + 0x09)); }