mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-13 07:57:58 +00:00
Added possibly missing brackets
This commit is contained in:
parent
0db82f02cf
commit
5c23ffb7bc
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ DEFINE_ACTION_FUNCTION(AActor, A_EntityDeath)
|
||||||
|
|
||||||
fixed_t SpawnX = spot->x;
|
fixed_t SpawnX = spot->x;
|
||||||
fixed_t SpawnY = spot->y;
|
fixed_t SpawnY = spot->y;
|
||||||
fixed_t SpawnZ = spot->z + self->tracer? 70*FRACUNIT : 0;
|
fixed_t SpawnZ = spot->z + (self->tracer? 70*FRACUNIT : 0);
|
||||||
|
|
||||||
an = self->angle >> ANGLETOFINESHIFT;
|
an = self->angle >> ANGLETOFINESHIFT;
|
||||||
second = Spawn("EntitySecond", SpawnX + FixedMul (secondRadius, finecosine[an]),
|
second = Spawn("EntitySecond", SpawnX + FixedMul (secondRadius, finecosine[an]),
|
||||||
|
|
Loading…
Reference in a new issue