Update of /cvsroot/super-tux/supertux/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10035
Modified Files:
gameloop.cpp resources.cpp
Log Message:
replaced distros with coins
Index: gameloop.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/gameloop.cpp,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -d -r1.99 -r1.100
--- gameloop.cpp 24 Apr 2004 14:49:03 -0000 1.99
+++ gameloop.cpp 25 Apr 2004 11:55:38 -0000 1.100
@@ -634,7 +634,7 @@
}
sprintf(str, "%d", player_status.distros);
- white_text->draw("DISTROS", screen->h, 0, 1);
+ white_text->draw("COINS", screen->h, 0, 1);
gold_text->draw(str, 608, 0, 1);
white_text->draw("LIVES", screen->h, 20, 1);
@@ -685,7 +685,7 @@
sprintf(str, "SCORE: %d", player_status.score);
gold_text->drawf(str, 0, 224, A_HMIDDLE, A_TOP, 1);
- sprintf(str, "DISTROS: %d", player_status.distros);
+ sprintf(str, "COINS: %d", player_status.distros);
gold_text->drawf(str, 0, 256, A_HMIDDLE, A_TOP, 1);
flipscreen();
Index: resources.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/resources.cpp,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- resources.cpp 24 Apr 2004 17:48:49 -0000 1.22
+++ resources.cpp 25 Apr 2004 11:55:39 -0000 1.23
@@ -244,16 +244,16 @@
USE_ALPHA);
/* Distros: */
- img_distro[0] = new Surface(datadir + "/images/shared/distro-0.png",
+ img_distro[0] = new Surface(datadir + "/images/tilesets/coin1.png",
USE_ALPHA);
- img_distro[1] = new Surface(datadir + "/images/shared/distro-1.png",
+ img_distro[1] = new Surface(datadir + "/images/tilesets/coin2.png",
USE_ALPHA);
- img_distro[2] = new Surface(datadir + "/images/shared/distro-2.png",
+ img_distro[2] = new Surface(datadir + "/images/tilesets/coin3.png",
USE_ALPHA);
- img_distro[3] = new Surface(datadir + "/images/shared/distro-3.png",
+ img_distro[3] = new Surface(datadir + "/images/tilesets/coin2.png",
USE_ALPHA);
|