d3d12: Fix wrong front_face_ccw value for Disgaea 3

This commit is contained in:
Vincent Lejeune 2015-11-01 20:56:49 +01:00
parent 917f08c534
commit c152c20d70

View File

@ -364,8 +364,8 @@ BOOL get_front_face_ccw(u32 set_front_face_value) noexcept
{
switch (set_front_face_value)
{
case CELL_GCM_CW: return FALSE;
default: // Disgaea 3 pass some garbage value at startup, this is needed to survive.
case CELL_GCM_CW: return FALSE;
case CELL_GCM_CCW: return TRUE;
}
unreachable("Wrong front face value");