Update of /cvsroot/super-tux/supertux/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv810/src
Modified Files:
gameloop.cpp
Log Message:
Fixed lives positon.
Index: gameloop.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/gameloop.cpp,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -d -r1.147 -r1.148
--- gameloop.cpp 3 Jun 2004 22:09:31 -0000 1.147
+++ gameloop.cpp 3 Jun 2004 22:17:57 -0000 1.148
@@ -726,9 +726,6 @@
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 @@
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);
|