Skip to content

Commit

Permalink
Fixed compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
hiker committed Jul 27, 2015
1 parent d9e806f commit 5c66273
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/states_screens/race_result_gui.cpp
Expand Up @@ -451,7 +451,7 @@ void RaceResultGUI::determineTableLayout()
float max_finish_time = 0;

for (int source_pos = 1, dest_pos = 0;
dest_pos < num_karts; source_pos++, dest_pos++)
dest_pos < (int)num_karts; source_pos++, dest_pos++)
{
const AbstractKart *kart = rank_world->getKartAtPosition(source_pos);

Expand Down

0 comments on commit 5c66273

Please sign in to comment.