mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Fix polymost_dorotatesprite() clipping
git-svn-id: https://svn.eduke32.com/eduke32@8108 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
a5dacd4b12
commit
062207b2e9
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue