mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-26 23:10:38 +00:00
When logging PRIM commands, print the prim number
This commit is contained in:
parent
4df08e49e9
commit
4daebe9b0f
@ -115,9 +115,9 @@ void GeDisassembleOp(u32 pc, u32 op, u32 prev, char *buffer) {
|
||||
"RECTANGLES",
|
||||
};
|
||||
if (gstate.vertType & GE_VTYPE_IDX_MASK)
|
||||
sprintf(buffer, "DrawPrim indexed type: %s count: %i vaddr= %08x, iaddr= %08x", type < 7 ? types[type] : "INVALID", count, gstate_c.vertexAddr, gstate_c.indexAddr);
|
||||
sprintf(buffer, "DrawPrim indexed type %i: %s count: %i vaddr= %08x, iaddr= %08x", type, type < 7 ? types[type] : "INVALID", count, gstate_c.vertexAddr, gstate_c.indexAddr);
|
||||
else
|
||||
sprintf(buffer, "DrawPrim type: %s count: %i vaddr= %08x", type < 7 ? types[type] : "INVALID", count, gstate_c.vertexAddr);
|
||||
sprintf(buffer, "DrawPrim type %i: %s count: %i vaddr= %08x", type, type < 7 ? types[type] : "INVALID", count, gstate_c.vertexAddr);
|
||||
}
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user