small fix for 32bit dsp HW reads

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7518 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Marko Pusljar 2011-05-06 20:26:54 +00:00
parent c88126233b
commit c225f8b363

View File

@ -555,10 +555,10 @@ void Read32(u32& _uReturnValue, const u32 _iAddress)
break;
default:
_uReturnValue = 0;
_dbg_assert_(DSPINTERFACE,0);
break;
}
_uReturnValue = 0;
}
void Write32(const u32 _iValue, const u32 _iAddress)