From: Ricardo Cruz Date: Sat, 15 May 2004 11:29:47 +0000 (+0000) Subject: Fixed Coins text position in world map. X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=4d28c2fdb0218c5c69e56723ec13b2bb5d6d8829;p=supertux.git Fixed Coins text position in world map. SVN-Revision: 1191 --- diff --git a/src/worldmap.cpp b/src/worldmap.cpp index c010d5879..d97d9108d 100644 --- a/src/worldmap.cpp +++ b/src/worldmap.cpp @@ -816,7 +816,7 @@ WorldMap::draw_status() sprintf(str, "%d", player_status.distros); white_text->draw_align("COINS", screen->w/2 - white_text->w*5, 0, A_LEFT, A_TOP); - gold_text->draw_align(str, screen->w/2, 0, A_RIGHT, A_TOP); + gold_text->draw_align(str, screen->w/2 + (white_text->w*5)/2, 0, A_RIGHT, A_TOP); white_text->draw("LIVES", screen->w - white_text->w*9, 0); if (player_status.lives >= 5)