mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Disasm GE_CMD_REVERSENORMAL
This commit is contained in:
parent
2447213c52
commit
7a5aa60b3a
2 changed files with 5 additions and 1 deletions
|
@ -554,6 +554,10 @@ void GeDisassembleOp(u32 pc, u32 op, u32 prev, char *buffer) {
|
|||
sprintf(buffer, "Patch Facing: %d", data);
|
||||
break;
|
||||
|
||||
case GE_CMD_REVERSENORMAL:
|
||||
sprintf(buffer, "Reverse normal: %d", data);
|
||||
break;
|
||||
|
||||
case GE_CMD_MATERIALUPDATE:
|
||||
sprintf(buffer, "Material Update: %d", data);
|
||||
break;
|
||||
|
|
|
@ -92,7 +92,7 @@ enum GECommand
|
|||
GE_CMD_OFFSETX=0x4C,
|
||||
GE_CMD_OFFSETY=0x4D,
|
||||
GE_CMD_LMODE=0x50,
|
||||
GE_CMD_REVERSENORMAL,
|
||||
GE_CMD_REVERSENORMAL=0x51,
|
||||
GE_CMD_MATERIALUPDATE=0x53,
|
||||
GE_CMD_MATERIALEMISSIVE, //not sure about these but this makes sense
|
||||
GE_CMD_MATERIALAMBIENT, //gotta try enabling lighting and check :)
|
||||
|
|
Loading…
Add table
Reference in a new issue