mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-02 12:00:01 -06:00
fix bugs with line polygons
This commit is contained in:
@ -582,7 +582,10 @@ void BuildPolygons(RendererPolygon* polygons, int npolys)
|
||||
y = vtx->FinalPosition[1];
|
||||
}
|
||||
|
||||
if (lastx == x && lasty == y) continue;
|
||||
if (j > 0)
|
||||
{
|
||||
if (lastx == x && lasty == y) continue;
|
||||
}
|
||||
|
||||
*vptr++ = x | (y << 16);
|
||||
*vptr++ = z | (w << 16);
|
||||
|
Reference in New Issue
Block a user