From: Ricardo Cruz Date: Fri, 16 Apr 2004 18:49:13 +0000 (+0000) Subject: As requested by Ingo Ruhnke, now the author name is much more discrete. X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=120f18af2beaaa61663f0769f90b8391b6888435;p=supertux.git As requested by Ingo Ruhnke, now the author name is much more discrete. SVN-Revision: 534 --- diff --git a/src/gameloop.cpp b/src/gameloop.cpp index bf0f9039c..aa972cd4b 100644 --- a/src/gameloop.cpp +++ b/src/gameloop.cpp @@ -137,11 +137,12 @@ GameSession::levelintro(void) 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();