Remove trailing whitespace

This commit is contained in:
James R 2019-09-26 14:39:23 -07:00
parent 921409224c
commit 1d59d8305d
2 changed files with 3 additions and 3 deletions

View file

@ -447,7 +447,7 @@ static void D_Display(void)
{
if (i > 0) // Splitscreen-specific
{
switch (i)
switch (i)
{
case 1:
if (splitscreen > 1)

View file

@ -3306,12 +3306,12 @@ void P_PlayerRingBurst(player_t *player, INT32 num_rings)
// 20 is the ring cap in kart
if (num_rings > 20)
num_rings = 20;
num_rings = 20;
else if (num_rings <= 0)
return;
// Cap the maximum loss automatically to 2 in ring debt
if (player->kartstuff[k_rings] <= 0 && num_rings > 2)
if (player->kartstuff[k_rings] <= 0 && num_rings > 2)
num_rings = 2;
P_GivePlayerRings(player, -num_rings);