Enable face culling

This commit is contained in:
Magnus Norddahl 2023-12-06 09:36:10 +01:00
commit 6b0e4345a2
2 changed files with 2 additions and 2 deletions

View file

@ -264,7 +264,7 @@ void DoomLevelSubmesh::CreateStaticSurfaces(FLevelLocals& doomMap)
for (int i = 0, end = sub->numlines; i < end; i++)
{
auto& vt = sub->firstline[i].v1;
auto& vt = sub->firstline[end - 1 - i].v1;
FFlatVertex ffv;
ffv.x = (float)vt->fX();