Merge pull request #131 from gennariarmando/master

Frontend fixes.
This commit is contained in:
aap
2019-07-14 10:22:52 +02:00
committed by GitHub
3 changed files with 258 additions and 253 deletions

View File

@ -325,7 +325,7 @@ void CHud::Draw()
else {
Clip = AmmoInClip;
if (TotalAmmo - AmmoInClip > 9999)
if ((TotalAmmo - AmmoInClip) > 9999)
Ammo = 9999;
else
Ammo = TotalAmmo - AmmoInClip;