From: Ricardo Cruz Date: Mon, 17 May 2004 09:13:14 +0000 (+0000) Subject: Make use of the arctic background instead of the Tux oil one. X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=c04c4dd3b5a68142f20942ea5221bf738162156e;p=supertux.git 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. SVN-Revision: 1233 --- diff --git a/src/title.cpp b/src/title.cpp index b7a3adef5..daf82ffbf 100644 --- a/src/title.cpp +++ b/src/title.cpp @@ -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 @@ void title(void) /* 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 @@ void title(void) 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 @@ void title(void) free_contrib_menu(); delete bkg_title; - delete bkg_credits; delete logo; delete img_choose_subset; }