[Super-tux-commit] supertux/src title.cpp,1.20,1.21
Brought to you by:
wkendrick
From: Ingo R. <gr...@us...> - 2004-04-10 12:02:00
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21978 Modified Files: title.cpp Log Message: - fixed menu/logo overdraw problem Index: title.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/title.cpp,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- title.cpp 10 Apr 2004 11:42:43 -0000 1.20 +++ title.cpp 10 Apr 2004 11:48:16 -0000 1.21 @@ -217,7 +217,10 @@ /* Draw the background: */ draw_background(); draw_demo(); - texture_draw(&logo, 160, 30); + + if (current_menu == main_menu) + texture_draw(&logo, 160, 30); + text_draw(&white_small_text, " SuperTux " VERSION "\n" "Copyright (c) 2003 SuperTux Devel Team\n" |