mirror of
https://github.com/nzp-team/dquakeplus.git
synced 2024-11-10 06:31:40 +00:00
PSP: Fix bad qboolean declaration
This commit is contained in:
parent
d274259d9d
commit
19f1b3b8ba
1 changed files with 4 additions and 1 deletions
|
@ -2405,7 +2405,10 @@ void QMB_MuzzleFlash(vec3_t org)
|
|||
color[2] = 255;
|
||||
}
|
||||
|
||||
red_or_blue_pap = !red_or_blue_pap;
|
||||
if (red_or_blue_pap == true)
|
||||
red_or_blue_pap = false;
|
||||
else
|
||||
red_or_blue_pap = true;
|
||||
}
|
||||
|
||||
// Weapon overrides for muzzleflash color
|
||||
|
|
Loading…
Reference in a new issue