[Super-tux-commit] supertux/src title.cpp,1.85,1.86
Brought to you by:
wkendrick
From: Ricardo C. <rm...@us...> - 2004-05-17 09:13:23
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv680/src Modified Files: title.cpp Log Message: Make use of the arctic background instead of the Tux oil one. I think we should keep the oil Tux for the end of the game credits background... To be like a reward. Index: title.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/title.cpp,v retrieving revision 1.85 retrieving revision 1.86 diff -u -d -r1.85 -r1.86 --- title.cpp 16 May 2004 18:14:19 -0000 1.85 +++ title.cpp 17 May 2004 09:13:14 -0000 1.86 @@ -52,7 +52,6 @@ #include "resources.h" static Surface* bkg_title; -static Surface* bkg_credits; static Surface* logo; static Surface* img_choose_subset; @@ -228,7 +227,6 @@ /* Load images: */ bkg_title = new Surface(datadir + "/images/title/background.jpg", IGNORE_ALPHA); - bkg_credits = new Surface(datadir + "/images/background/oiltux.jpg", IGNORE_ALPHA); logo = new Surface(datadir + "/images/title/logo.png", USE_ALPHA); img_choose_subset = new Surface(datadir + "/images/status/choose-level-subset.png", USE_ALPHA); @@ -305,7 +303,7 @@ Menu::set_current(main_menu); break; case MNID_CREDITS: - display_text_file("CREDITS", bkg_credits, SCROLL_SPEED_CREDITS); + display_text_file("CREDITS", bkg_title, SCROLL_SPEED_CREDITS); Menu::set_current(main_menu); break; case MNID_QUITMAINMENU: @@ -373,7 +371,6 @@ free_contrib_menu(); delete bkg_title; - delete bkg_credits; delete logo; delete img_choose_subset; } |