From: Ingo Ruhnke Date: Sun, 25 Apr 2004 11:55:39 +0000 (+0000) Subject: replaced distros with coins X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=331a611312c6168fbc7dbcdc55e28a2216b8ecd2;p=supertux.git replaced distros with coins SVN-Revision: 692 --- diff --git a/src/gameloop.cpp b/src/gameloop.cpp index 6e4ee5a31..5c3340676 100644 --- a/src/gameloop.cpp +++ b/src/gameloop.cpp @@ -634,7 +634,7 @@ GameSession::drawstatus() } 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 @@ GameSession::drawresultscreen(void) 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(); diff --git a/src/resources.cpp b/src/resources.cpp index 3549212d3..32903e1e2 100644 --- a/src/resources.cpp +++ b/src/resources.cpp @@ -244,16 +244,16 @@ void loadshared() 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);