mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Add WARN_LOG_REPORT_ONCE for unsupported BJUMP/BOUNDINGBOX
This commit is contained in:
parent
b717e41909
commit
ec00b335f2
1 changed files with 4 additions and 0 deletions
|
@ -813,10 +813,14 @@ void GLES_GPU::ExecuteOp(u32 op, u32 diff) {
|
|||
break;
|
||||
|
||||
case GE_CMD_BJUMP:
|
||||
if (data != 0)
|
||||
WARN_LOG_REPORT_ONCE(bjump, G3D, "Unsupported bjump: %06x", data);
|
||||
// bounding box jump. Let's just not jump, for now.
|
||||
break;
|
||||
|
||||
case GE_CMD_BOUNDINGBOX:
|
||||
if (data != 0)
|
||||
WARN_LOG_REPORT_ONCE(boundingbox, G3D, "Unsupported bounding box: %06x", data);
|
||||
// bounding box test. Let's do nothing.
|
||||
break;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue