From 94cc33cb0cd22a1562f35363907109f4bbcfe53d Mon Sep 17 00:00:00 2001 From: nakeee Date: Mon, 20 Jul 2009 22:12:53 +0000 Subject: [PATCH] DSPLLE: ld only increase 0x3 by one git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3867 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DSPCore/Src/DSPIntExtOps.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/DSPCore/Src/DSPIntExtOps.cpp b/Source/Core/DSPCore/Src/DSPIntExtOps.cpp index e04739d628..b8f4c7073c 100644 --- a/Source/Core/DSPCore/Src/DSPIntExtOps.cpp +++ b/Source/Core/DSPCore/Src/DSPIntExtOps.cpp @@ -377,9 +377,9 @@ void dsp_op_ext_ld(const UDSPInstruction& opc) } else { - // Hmm - // if (sreg != 0x3) - dsp_increment_addr_reg(0x03); + // Tested to increase 0x3 only by one + if (sreg != 0x3) + dsp_increment_addr_reg(0x03); } }