From 52ccfa36a13fa9025697c1fba24e9992a842a21f Mon Sep 17 00:00:00 2001 From: "XTra.KrazzY" Date: Sat, 11 Jul 2009 21:36:31 +0000 Subject: [PATCH] Turns out that playing ZWW is prolific. Found new 0x0008 voice type in zelda git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3756 8ced0084-cf51-0410-be5f-012b33b47a6e --- .../Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_Zelda_Voice.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_Zelda_Voice.cpp b/Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_Zelda_Voice.cpp index af051977df..463334a7db 100644 --- a/Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_Zelda_Voice.cpp +++ b/Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_Zelda_Voice.cpp @@ -423,8 +423,9 @@ void CUCode_Zelda::RenderAddVoice(ZeldaVoicePB &PB, s32* _LeftBuffer, s32* _Righ break; // These are more "synth" formats - square wave, saw wave etc. - case 0x0002: - case 0x000c: // Appears in yellow force-field in Temple of the Gods, ZWW + case 0x0002: + case 0x0006: // Example: Second time in "Hyrule", in the king's room, when fighting the two knights (in ZWW, of course) + case 0x000c: // Example: beam of death/yellow force-field in Temple of the Gods, ZWW WARN_LOG(DSPHLE, "Synthesizing 0x%04x", PB.Format); break;