diff options
| author | nakeee <nakeee@gmail.com> | 2009-07-27 16:41:11 +0000 |
|---|---|---|
| committer | nakeee <nakeee@gmail.com> | 2009-07-27 16:41:11 +0000 |
| commit | 6a9292463685a0709e0cbcbff12f98b88fc8eff4 (patch) | |
| tree | 0ee2c9a58a7980e7d2175011280160760e49ff68 /Source/Core/DSPCore/Src/DSPIntExtOps.cpp | |
| parent | 9d10f9355d658fac602168cc65f5d9aec82d72f9 (diff) | |
DSPLLE: remove the if 0 around SR_MUL_UNSIGNED in hope to figure out why it makes AX games sound bad
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3892 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DSPCore/Src/DSPIntExtOps.cpp')
| -rw-r--r-- | Source/Core/DSPCore/Src/DSPIntExtOps.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DSPCore/Src/DSPIntExtOps.cpp b/Source/Core/DSPCore/Src/DSPIntExtOps.cpp index 8dfe818173..31ac43d10a 100644 --- a/Source/Core/DSPCore/Src/DSPIntExtOps.cpp +++ b/Source/Core/DSPCore/Src/DSPIntExtOps.cpp @@ -421,7 +421,7 @@ void ldm(const UDSPInstruction& opc) // xxxx xxxx 11dr 11ss void ldnm(const UDSPInstruction& opc) { - u8 dreg = (opc.hex >> 5) & 0x1; + u8 dreg = (opc.hex >> 5) & 0x1; u8 rreg = (opc.hex >> 4) & 0x1; u8 sreg = opc.hex & 0x3; |
