[Super-tux-commit] supertux/src title.cpp,1.143,1.144
Brought to you by:
wkendrick
From: Marek M. <wa...@us...> - 2005-04-03 21:34:41
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25486/src Modified Files: title.cpp Log Message: another unimportant fix that annoyed me for a while :) Index: title.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/title.cpp,v retrieving revision 1.143 retrieving revision 1.144 diff -u -d -r1.143 -r1.144 --- title.cpp 1 Apr 2005 12:16:51 -0000 1.143 +++ title.cpp 3 Apr 2005 21:34:26 -0000 1.144 @@ -345,15 +345,14 @@ LAYER_FOREGROUND1+1); context.draw_text(white_small_text, " SuperTux " PACKAGE_VERSION "\n", - Vector(0, screen->h - 70), LEFT_ALLIGN, LAYER_FOREGROUND1); + Vector(0, screen->h - 50), LEFT_ALLIGN, LAYER_FOREGROUND1); context.draw_text(white_small_text, _( "Copyright (c) 2003 SuperTux Devel Team\n" -"This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you\n" -"are welcome to redistribute it under certain conditions; see the file COPYING\n" -"for details.\n" +"This game comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to\n" +"redistribute it under certain conditions; see the file COPYING for details.\n" ), - Vector(0, screen->h - 70 + white_small_text->get_height()), + Vector(0, screen->h - 50 + white_small_text->get_height() + 5), LEFT_ALLIGN, LAYER_FOREGROUND1); /* Don't draw menu, if quit is true */ |