mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-06-28 01:49:42 -06:00
Fix regression caused by change to front face polygon culling (#1820)
* fix regression with facing view Only the check for a polygon being counter-clockwise is supposed to be <= * only use dot < 0 for 'cull front face' polygons this is the fix.
This commit is contained in:
@ -1070,7 +1070,7 @@ void SubmitPolygon()
|
||||
|
||||
bool facingview = (dot <= 0);
|
||||
|
||||
if (facingview)
|
||||
if (dot < 0)
|
||||
{
|
||||
if (!(CurPolygonAttr & (1<<7)))
|
||||
{
|
||||
|
Reference in New Issue
Block a user