mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 14:31:24 +12:00
d3d12: Fix wrong front_face_ccw value for Disgaea 3
This commit is contained in:
parent
917f08c534
commit
c152c20d70
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue