[Super-tux-commit] supertux/src gameloop.cpp,1.131,1.132
Brought to you by:
wkendrick
From: Ricardo C. <rm...@us...> - 2004-05-18 14:03:03
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3237/src Modified Files: gameloop.cpp Log Message: Just pushed the level info down. Index: gameloop.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/gameloop.cpp,v retrieving revision 1.131 retrieving revision 1.132 diff -u -d -r1.131 -r1.132 --- gameloop.cpp 17 May 2004 14:11:03 -0000 1.131 +++ gameloop.cpp 18 May 2004 14:02:47 -0000 1.132 @@ -151,13 +151,13 @@ drawgradient(get_level()->bkgd_top, get_level()->bkgd_bottom); sprintf(str, "%s", world->get_level()->name.c_str()); - gold_text->drawf(str, 0, 200, A_HMIDDLE, A_TOP, 1); + gold_text->drawf(str, 0, 220, A_HMIDDLE, A_TOP, 1); sprintf(str, "TUX x %d", player_status.lives); - white_text->drawf(str, 0, 224, A_HMIDDLE, A_TOP, 1); + white_text->drawf(str, 0, 240, A_HMIDDLE, A_TOP, 1); sprintf(str, "by %s", world->get_level()->author.c_str()); - white_small_text->drawf(str, 0, 360, A_HMIDDLE, A_TOP, 1); + white_small_text->drawf(str, 0, 400, A_HMIDDLE, A_TOP, 1); flipscreen(); |