From c225f8b363744f21076722b6affe35f3defa3a4c Mon Sep 17 00:00:00 2001 From: Marko Pusljar Date: Fri, 6 May 2011 20:26:54 +0000 Subject: [PATCH] small fix for 32bit dsp HW reads git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7518 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Src/HW/DSP.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/Src/HW/DSP.cpp b/Source/Core/Core/Src/HW/DSP.cpp index e08e0c798d..5ce02e1d71 100644 --- a/Source/Core/Core/Src/HW/DSP.cpp +++ b/Source/Core/Core/Src/HW/DSP.cpp @@ -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)