mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 21:28:51 +00: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:
parent
c88126233b
commit
c225f8b363
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue