mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 18:50:46 +00:00
WWII GI: Fix the chaingun replacement to not fire in bursts of 3 per fire button press.
git-svn-id: https://svn.eduke32.com/eduke32@6870 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
1d75fa13a4
commit
e9aa30ceee
1 changed files with 1 additions and 1 deletions
|
@ -4217,7 +4217,7 @@ static void P_ProcessWeapon(int playerNum)
|
|||
{
|
||||
if (!(PWEAPON(playerNum, pPlayer->curr_weapon, Flags) & WEAPON_SEMIAUTO))
|
||||
{
|
||||
if (TEST_SYNC_KEY(playerBits, SK_FIRE) == 0 && PWEAPON(playerNum, pPlayer->curr_weapon, Flags) & WEAPON_RESET)
|
||||
if (TEST_SYNC_KEY(playerBits, SK_FIRE) == 0 /*&& PWEAPON(playerNum, pPlayer->curr_weapon, Flags) & WEAPON_RESET*/)
|
||||
*weaponFrame = PWEAPON(playerNum, pPlayer->curr_weapon, TotalTime);
|
||||
if (PWEAPON(playerNum, pPlayer->curr_weapon, Flags) & WEAPON_FIREEVERYTHIRD)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue