mirror of https://github.com/xemu-project/xemu.git
nv2a: Discard unknown front face
This commit is contained in:
parent
50a5368f47
commit
dcad9d62b3
|
@ -1704,9 +1704,8 @@ DEF_METHOD(NV097, SET_FRONT_FACE)
|
||||||
case NV097_SET_FRONT_FACE_V_CCW:
|
case NV097_SET_FRONT_FACE_V_CCW:
|
||||||
ccw = true; break;
|
ccw = true; break;
|
||||||
default:
|
default:
|
||||||
fprintf(stderr, "Unknown front face: 0x%x\n", parameter);
|
NV2A_DPRINTF("Unknown front face: 0x%08x\n", parameter);
|
||||||
assert(false);
|
return; /* discard */
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
SET_MASK(pg->regs[NV_PGRAPH_SETUPRASTER],
|
SET_MASK(pg->regs[NV_PGRAPH_SETUPRASTER],
|
||||||
NV_PGRAPH_SETUPRASTER_FRONTFACE,
|
NV_PGRAPH_SETUPRASTER_FRONTFACE,
|
||||||
|
|
Loading…
Reference in New Issue