[Super-tux-commit] supertux/src intro.cpp,1.21,1.22
Brought to you by:
wkendrick
From: Ricardo C. <rm...@us...> - 2004-05-17 10:12:28
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11871/src Modified Files: intro.cpp Log Message: Fixed a crash. It was using the old name of the background image. Index: intro.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/intro.cpp,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- intro.cpp 2 May 2004 14:56:04 -0000 1.21 +++ intro.cpp 17 May 2004 10:12:19 -0000 1.22 @@ -36,7 +36,7 @@ void draw_intro() { if(debug_mode) - fade("/images/background/arctis2.jpg", 30, false); -display_text_file("intro.txt", "/images/background/arctis2.jpg", SCROLL_SPEED_MESSAGE); + fade("/images/background/arctis.jpg", 30, false); +display_text_file("intro.txt", "/images/background/arctis.jpg", SCROLL_SPEED_MESSAGE); } |