mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
Fixed compiler warning for FPF_NOAUTOAIM flag check
This commit is contained in:
parent
8948f5dc2b
commit
5afbe8ca00
1 changed files with 1 additions and 1 deletions
|
@ -1359,7 +1359,7 @@ DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_FireCustomMissile)
|
|||
// Temporarily adjusts the pitch
|
||||
fixed_t SavedPlayerPitch = self->pitch;
|
||||
self->pitch -= pitch;
|
||||
AActor * misl=P_SpawnPlayerMissile (self, x, y, z, ti, shootangle, &linetarget, NULL, false, Flags & FPF_NOAUTOAIM);
|
||||
AActor * misl=P_SpawnPlayerMissile (self, x, y, z, ti, shootangle, &linetarget, NULL, false, (Flags & FPF_NOAUTOAIM) != 0);
|
||||
self->pitch = SavedPlayerPitch;
|
||||
|
||||
// automatic handling of seeker missiles
|
||||
|
|
Loading…
Reference in a new issue