mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04: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
2 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue