[Super-tux-commit] supertux/src resources.cpp,1.17,1.18 resources.h,1.6,1.7
Brought to you by:
wkendrick
From: Ricardo C. <rm...@us...> - 2004-04-22 21:24:43
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32651/src Modified Files: resources.cpp resources.h Log Message: Removed box_full and box_empty from this. They are now implemented as tiles. Index: resources.h =================================================================== RCS file: /cvsroot/super-tux/supertux/src/resources.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- resources.h 20 Apr 2004 11:09:34 -0000 1.6 +++ resources.h 22 Apr 2004 21:24:31 -0000 1.7 @@ -29,8 +29,6 @@ extern Surface* img_flag[2]; extern Surface* img_cloud[2][4]; -extern Surface* img_box_full; -extern Surface* img_box_empty; extern Surface* img_super_bkgd; extern Surface* img_red_glow; Index: resources.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/resources.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- resources.cpp 22 Apr 2004 19:40:41 -0000 1.17 +++ resources.cpp 22 Apr 2004 21:24:29 -0000 1.18 @@ -34,8 +34,6 @@ Surface* img_flag[2]; Surface* img_cloud[2][4]; -Surface* img_box_full; -Surface* img_box_empty; Surface* img_red_glow; SpriteManager* sprite_manager = 0; @@ -184,14 +182,6 @@ USE_ALPHA); - /* Boxes: */ - - img_box_full = new Surface(datadir + "/images/shared/box-full.png", - IGNORE_ALPHA); - img_box_empty = new Surface(datadir + "/images/shared/box-empty.png", - IGNORE_ALPHA); - - /* Water: */ @@ -334,9 +324,6 @@ free_badguy_gfx(); - delete img_box_full; - delete img_box_empty; - delete img_water; for (i = 0; i < 3; i++) delete img_waves[i]; |