X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fgameloop.cpp;h=fc09ba7c2ef8d1853a65b538192dac8ed8bd8f6a;hb=d5382cf193ec852caa1d3f66206a2e6f95efc5e1;hp=0fc9978e429d9b431923f9479f9003af5f738dfe;hpb=1db76d7f39c1c5bae6c0ddc3f355afe983d18604;p=supertux.git diff --git a/src/gameloop.cpp b/src/gameloop.cpp index 0fc9978e4..fc09ba7c2 100644 --- a/src/gameloop.cpp +++ b/src/gameloop.cpp @@ -726,9 +726,6 @@ GameSession::drawstatus(DrawingContext& context) context.draw_text(gold_text, str, Vector(screen->w - gold_text->get_text_width(" 99"), 0),LAYER_FOREGROUND1); - context.draw_text(white_text, _("LIVES"), - Vector(screen->w - white_text->get_text_width(_("LIVES"))-white_text->get_text_width(str), 20), - LAYER_FOREGROUND1); if (player_status.lives >= 5) { sprintf(str, "%dx", player_status.lives); @@ -745,6 +742,10 @@ GameSession::drawstatus(DrawingContext& context) LAYER_FOREGROUND1); } + context.draw_text(white_text, _("LIVES"), + Vector(screen->w - white_text->get_text_width(_("LIVES")) - white_text->get_text_width(" 99"), 20), + LAYER_FOREGROUND1); + if(show_fps) { sprintf(str, "%2.1f", fps_fps);