From 1ffbf6fa5321f5e5d05adb44e699a6771013e99d Mon Sep 17 00:00:00 2001 From: death2droid Date: Fri, 15 May 2009 07:09:10 +0000 Subject: [PATCH] Fixed problem with the RE0 hack making the re0 hack when it's turned off it's working as if it was turned on and when it's on it acted as of it was turned off. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3236 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_AX.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_AX.cpp b/Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_AX.cpp index 961b8d8446..951404cb54 100644 --- a/Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_AX.cpp +++ b/Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_AX.cpp @@ -352,11 +352,11 @@ void CUCode_AX::MixAdd(short* _pBuffer, int _iSize) if(g_Config.m_EnableRE0Fix) { - k=j; + k=0; } else { - k=0; + k=j; } const u16 updpar = Memory_Read_U16(updaddr + k);