More tabs to spaces for trailing comments

Signed-off-by: Gabriel Ravier <gabravier@gmail.com>
This commit is contained in:
Gabriel Ravier 2019-09-17 11:09:29 +02:00
parent 3a837a1090
commit 38a00ec88a
No known key found for this signature in database
GPG key ID: 1E75F156884F3DCE

View file

@ -104,13 +104,13 @@ BOOL TradeArms(long code1, long code2, long max_num)
while (i < ARMS_MAX) while (i < ARMS_MAX)
{ {
if (gArmsData[i].code == code1) if (gArmsData[i].code == code1)
break; // Found break; // Found
++i; ++i;
} }
if (i == ARMS_MAX) if (i == ARMS_MAX)
return FALSE; // Not found return FALSE; // Not found
// Initialize new weapon replacing old one, but adding the maximum ammunition to that of the old weapon. // Initialize new weapon replacing old one, but adding the maximum ammunition to that of the old weapon.
gArmsData[i].level = 1; gArmsData[i].level = 1;