Revert change to WSBH as we don't have a swap16 that takes/returns u32.

This commit is contained in:
Sacha 2013-11-06 01:37:53 +10:00
parent a03e5c6de0
commit 61e6054920
2 changed files with 2 additions and 2 deletions

View File

@ -787,7 +787,7 @@ namespace MIPSInt
switch (op & 0x3ff)
{
case 0xA0: //wsbh
R(rd) = swap16(R(rt));
R(rd) = ((R(rt) & 0xFF00FF00) >> 8) | ((R(rt) & 0x00FF00FF) << 8);
break;
case 0xE0: //wsbw
R(rd) = swap32(R(rt));

2
native

@ -1 +1 @@
Subproject commit f0e47c2cede7313a057df66a6e01ba173df1e001
Subproject commit d323d5974449661e509a054dab891253dd301f27