mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix sceGeGetCmd
This commit is contained in:
parent
4f63bda419
commit
b72ac7d7f0
1 changed files with 1 additions and 1 deletions
|
@ -310,7 +310,7 @@ int sceGeGetMtx(int type, u32 matrixPtr)
|
|||
u32 sceGeGetCmd(int cmd)
|
||||
{
|
||||
INFO_LOG(HLE, "sceGeGetCmd(%i)", cmd);
|
||||
return gstate.cmdmem[cmd] & 0xFFFFFF; // Not sure about this mask.
|
||||
return gstate.cmdmem[cmd]; // Does not mask away the high bits.
|
||||
}
|
||||
|
||||
u32 sceGeEdramSetAddrTranslation(int new_size)
|
||||
|
|
Loading…
Add table
Reference in a new issue