From 4bdffa4f0f2bdb3c9a416f0367b9ae4a011163f1 Mon Sep 17 00:00:00 2001 From: terminx Date: Thu, 12 Mar 2020 00:58:45 +0000 Subject: [PATCH] Patch from Nuke.YKT to fix a y-flipped voxel rendering issue in Polymost git-svn-id: https://svn.eduke32.com/eduke32@8727 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/build/src/voxmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/build/src/voxmodel.cpp b/source/build/src/voxmodel.cpp index 00a2c7849..45427f660 100644 --- a/source/build/src/voxmodel.cpp +++ b/source/build/src/voxmodel.cpp @@ -1051,7 +1051,7 @@ int32_t polymost_voxdraw(voxmodel_t *m, tspriteptr_t const tspr) zoff += m->piv.z; zoff -= m->siz.z*.5f; } - if ((globalorientation&8) && (sprite[tspr->owner].cstat&48)!=0) zoff = m->siz.z-zoff; + if (globalorientation&8) zoff = m->siz.z-zoff; f = (65536.f*512.f) / ((float)xdimen*viewingrange); g = 32.f / ((float)xdimen*gxyaspect);