mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-01 03:32:07 +00:00
d3d12: Fix wrong front_face_ccw value for Disgaea 3
This commit is contained in:
parent
917f08c534
commit
c152c20d70
@ -364,8 +364,8 @@ BOOL get_front_face_ccw(u32 set_front_face_value) noexcept
|
|||||||
{
|
{
|
||||||
switch (set_front_face_value)
|
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.
|
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;
|
case CELL_GCM_CCW: return TRUE;
|
||||||
}
|
}
|
||||||
unreachable("Wrong front face value");
|
unreachable("Wrong front face value");
|
||||||
|
Loading…
Reference in New Issue
Block a user