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

This commit is contained in:
normmatt234 2013-03-28 15:44:01 +00:00
parent 8c98ac97bc
commit 1ff3ce6378
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);
}