mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
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:
@ -555,10 +555,10 @@ void Read32(u32& _uReturnValue, const u32 _iAddress)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
_uReturnValue = 0;
|
||||||
_dbg_assert_(DSPINTERFACE,0);
|
_dbg_assert_(DSPINTERFACE,0);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
_uReturnValue = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Write32(const u32 _iValue, const u32 _iAddress)
|
void Write32(const u32 _iValue, const u32 _iAddress)
|
||||||
|
Reference in New Issue
Block a user