mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-23 06:10:03 -06:00
fix edge indices count
This commit is contained in:
@ -784,7 +784,7 @@ void BuildPolygons(RendererPolygon* polygons, int npolys)
|
|||||||
|
|
||||||
NumVertices = vidx;
|
NumVertices = vidx;
|
||||||
NumIndices = iidx;
|
NumIndices = iidx;
|
||||||
NumEdgeIndices = eidx;
|
NumEdgeIndices = eidx - EdgeIndicesOffset;
|
||||||
}
|
}
|
||||||
|
|
||||||
void RenderSinglePolygon(int i)
|
void RenderSinglePolygon(int i)
|
||||||
|
Reference in New Issue
Block a user