mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
Revert change to WSBH as we don't have a swap16 that takes/returns u32.
This commit is contained in:
parent
a03e5c6de0
commit
61e6054920
@ -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
2
native
@ -1 +1 @@
|
||||
Subproject commit f0e47c2cede7313a057df66a6e01ba173df1e001
|
||||
Subproject commit d323d5974449661e509a054dab891253dd301f27
|
Loading…
Reference in New Issue
Block a user