Update of /cvsroot/super-tux/supertux/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6499/src
Modified Files:
gameloop.cpp
Log Message:
As requested by Ingo Ruhnke, now the author name is much more discrete.
Index: gameloop.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/gameloop.cpp,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -d -r1.71 -r1.72
--- gameloop.cpp 16 Apr 2004 16:52:17 -0000 1.71
+++ gameloop.cpp 16 Apr 2004 18:49:13 -0000 1.72
@@ -137,11 +137,12 @@
sprintf(str, "%s", world->get_level()->name.c_str());
gold_text->drawf(str, 0, 224, A_HMIDDLE, A_TOP, 1);
+ sprintf(str, "TUX x %d", player_status.lives);
+ white_text->drawf(str, 0, 256, A_HMIDDLE, A_TOP, 1);
+
sprintf(str, "by %s", world->get_level()->author.c_str());
- red_text->drawf(str, 0, 256, A_HMIDDLE, A_TOP, 1);
+ white_small_text->drawf(str, 0, 400, A_HMIDDLE, A_TOP, 1);
- sprintf(str, "TUX x %d", player_status.lives);
- white_text->drawf(str, 0, 288, A_HMIDDLE, A_TOP, 1);
flipscreen();
|