mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 14:52:01 +00:00
Fix r5548
git-svn-id: https://svn.eduke32.com/eduke32@5608 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
86f2cbaa88
commit
1b93d87b1a
1 changed files with 1 additions and 1 deletions
|
@ -5076,7 +5076,7 @@ int32_t A_InsertSprite(int16_t whatsect,int32_t s_x,int32_t s_y,int32_t s_z,int1
|
||||||
spritetype *s = &sprite[i];
|
spritetype *s = &sprite[i];
|
||||||
*s = *(spritetype *)&spr_temp;
|
*s = *(spritetype *)&spr_temp;
|
||||||
actor[i] = NullActor;
|
actor[i] = NullActor;
|
||||||
actor[i].bpos = *(vec3_t *) &s;
|
actor[i].bpos = *(vec3_t *)s;
|
||||||
|
|
||||||
if ((unsigned)s_ow < MAXSPRITES)
|
if ((unsigned)s_ow < MAXSPRITES)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue