Fix polymost_dorotatesprite() clipping

git-svn-id: https://svn.eduke32.com/eduke32@8108 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2019-09-17 03:20:34 +00:00 committed by Christoph Oelckers
parent a5dacd4b12
commit 062207b2e9
1 changed files with 3 additions and 1 deletions

View File

@ -7183,9 +7183,11 @@ void polymost_dorotatesprite(int32_t sx, int32_t sy, int32_t z, int16_t a, int16
}
while (nz);
n = 0;
if (nn >= 3)
{
n = nz = 0;
nz = 0;
do
{
int32_t zz = nz+1; if (zz == nn) zz = 0;