opps forgot to change change the unaligned 16bit rotate to check against old address.

git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@1174 a31d4220-a93d-0410-bf67-fe4944624d44
This commit is contained in:
normmatt234 2013-03-28 15:44:01 +00:00
parent 81f6d88f65
commit d434b0b7e5
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ unreadable:
break;
}
if(address & 1) {
if(oldAddress & 1) {
value = (value >> 8) | (value << 24);
}