Skip to content

Commit

Permalink
Fixed player position table printing when length of characters is les…
Browse files Browse the repository at this point in the history
…s than 4.
  • Loading branch information
redleek committed Dec 7, 2014
1 parent 7fa30a9 commit 292ab38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TacticalSpaceCheeseRacer/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ static void PrintAllPositions()
Console.WriteLine("Players and their positions:");
for (int playercount = 0; playercount < no_of_players; playercount++)
{
Console.WriteLine("{0}) {1}\t- {2}", playercount + 1, players[playercount].name, players[playercount].position);
Console.WriteLine("{0}) {1} \t- {2}", playercount + 1, players[playercount].name, players[playercount].position);
}
}

Expand Down

0 comments on commit 292ab38

Please sign in to comment.