From 5a55e49d31404c3f787c6afd269da734c747e84a Mon Sep 17 00:00:00 2001 From: pagefault <> Date: Wed, 23 Jul 2003 18:21:17 +0000 Subject: [PATCH] Fixed DSP init bug --- zsnes/src/init.asm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/zsnes/src/init.asm b/zsnes/src/init.asm index bdb5518c..ef7d3d7c 100644 --- a/zsnes/src/init.asm +++ b/zsnes/src/init.asm @@ -6195,13 +6195,15 @@ NEWSYM CheckROMType .endchpdtct cmp byte[DSP1Enable],1 - jne .notDSP1Hi + je .initdsp cmp byte[DSP2Enable],1 - jne .notDSP1Hi + je .initdsp cmp byte[DSP3Enable],1 - jne .notDSP1Hi + je .initdsp cmp byte[DSP4Enable],1 - jne .notDSP1Hi + je .initdsp + jmp .notDSP1Hi +.initdsp call InitDSP mov byte[DSP1Type],1 cmp byte[romtype],2