diff options
| author | nakeee <nakeee@gmail.com> | 2009-07-20 22:12:53 +0000 |
|---|---|---|
| committer | nakeee <nakeee@gmail.com> | 2009-07-20 22:12:53 +0000 |
| commit | 94cc33cb0cd22a1562f35363907109f4bbcfe53d (patch) | |
| tree | 7d8ba06671829094986321eec187a32e4c208758 /Source/Core/DSPCore | |
| parent | 17303d3be92b93a690f86dd7911618ffde04fc47 (diff) | |
DSPLLE: ld only increase 0x3 by one
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3867 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DSPCore')
| -rw-r--r-- | Source/Core/DSPCore/Src/DSPIntExtOps.cpp | 6 |
1 files 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); } } |
