Documented the change of rev 320 in a comment, so people reading the code will not be tempted to remove it.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@322 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
8e69d942e9
commit
4c54c0cad8
|
@ -283,6 +283,9 @@ void Write32(const u32 _iValue, const u32 _iAddress)
|
|||
break;
|
||||
|
||||
default:
|
||||
// Allow 32-bit writes to the VI: although this is officially not
|
||||
// allowed, the hardware seems to accept it (for example, DesktopMan GC
|
||||
// Tetris uses it).
|
||||
Write16(_iValue >> 16, _iAddress);
|
||||
Write16(_iValue & 0xFFFF, _iAddress + 2);
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue