From: Ricardo Cruz Date: Tue, 13 Apr 2004 18:39:56 +0000 (+0000) Subject: Just makes the level's author name to be written in red, so that it is highlighted. X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=7adc9ba6b26922c1d41443d6a5f2da324c83db2d;p=supertux.git Just makes the level's author name to be written in red, so that it is highlighted. I'm sure level creators will appretiate that. SVN-Revision: 524 --- diff --git a/src/gameloop.cpp b/src/gameloop.cpp index e7113347b..68d986924 100644 --- a/src/gameloop.cpp +++ b/src/gameloop.cpp @@ -143,7 +143,7 @@ GameSession::levelintro(void) gold_text->drawf(str, 0, 224, A_HMIDDLE, A_TOP, 1); sprintf(str, "by %s", world->get_level()->author.c_str()); - gold_text->drawf(str, 0, 256, A_HMIDDLE, A_TOP, 1); + red_text->drawf(str, 0, 256, A_HMIDDLE, A_TOP, 1); sprintf(str, "TUX x %d", tux.lives); white_text->drawf(str, 0, 288, A_HMIDDLE, A_TOP, 1);