Skip to content

Commit

Permalink
Added missing '('
Browse files Browse the repository at this point in the history
SVN-Revision: 6578
  • Loading branch information
Ingo Ruhnke committed Mar 8, 2010
1 parent e017c10 commit a68b712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/supertux/player_status.cpp
Expand Up @@ -157,7 +157,7 @@ PlayerStatus::draw(DrawingContext& context)
{
context.draw_surface(coin_surface,
Vector(SCREEN_WIDTH - BORDER_X - coin_surface->get_width() - Resources::fixed_font->get_text_width(coins_text),
BORDER_Y + 1 + Resources::fixed_font->get_text_height(coins_text) + 5) * player_id),
BORDER_Y + 1 + (Resources::fixed_font->get_text_height(coins_text) + 5) * player_id),
LAYER_HUD);
}
context.draw_text(Resources::fixed_font,
Expand Down

0 comments on commit a68b712

Please sign in to comment.