mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Exclude 0xFF from logging, happens a lot.
This commit is contained in:
parent
ac027fac81
commit
deaaa99763
1 changed files with 4 additions and 1 deletions
|
@ -1436,10 +1436,13 @@ void GLES_GPU::ExecuteOp(u32 op, u32 diff) {
|
|||
case GE_CMD_UNKNOWN_FC:
|
||||
case GE_CMD_UNKNOWN_FD:
|
||||
case GE_CMD_UNKNOWN_FE:
|
||||
case GE_CMD_UNKNOWN_FF:
|
||||
if (data != 0)
|
||||
WARN_LOG_REPORT_ONCE(unknowncmd, G3D, "Unknown GE command : %08x ", op);
|
||||
break;
|
||||
case GE_CMD_UNKNOWN_FF:
|
||||
// This is hit in quite a few games, supposedly it is a no-op.
|
||||
// Might be used for debugging or something?
|
||||
break;
|
||||
|
||||
default:
|
||||
GPUCommon::ExecuteOp(op, diff);
|
||||
|
|
Loading…
Add table
Reference in a new issue