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:
Maarten ter Huurne 2008-08-26 12:06:43 +00:00
parent 8e69d942e9
commit 4c54c0cad8

View file

@ -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;