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
This commit is contained in:
death2droid 2009-05-15 07:09:10 +00:00
parent 80e2052372
commit 1ffbf6fa53
1 changed files with 2 additions and 2 deletions

View File

@ -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);