[Super-tux-commit] supertux/src gameloop.cpp,1.69,1.70
Brought to you by:
wkendrick
From: Ricardo C. <rm...@us...> - 2004-04-13 18:53:58
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1562/src Modified Files: gameloop.cpp Log Message: 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. Index: gameloop.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/gameloop.cpp,v retrieving revision 1.69 retrieving revision 1.70 diff -u -d -r1.69 -r1.70 --- gameloop.cpp 13 Apr 2004 12:25:22 -0000 1.69 +++ gameloop.cpp 13 Apr 2004 18:39:56 -0000 1.70 @@ -143,7 +143,7 @@ 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); |