Jeck - Small edit to credits screen, now displays total turns taken... so players know how far they missed their task deadline by :P.

This commit is contained in:
wagic.jeck
2010-01-06 16:08:34 +00:00
parent b95a094b4c
commit 0913954268
+1 -1
View File
@@ -216,7 +216,7 @@ void Credits::Render(){
//!!
if (g->gameOver != p1) {
sprintf(buffer, _("Game length: %i seconds").c_str(), this->gameLength);
sprintf(buffer, _("Game length: %i turns (%i seconds)").c_str(), g->turn, this->gameLength);
f->DrawString(buffer, 10, y);
y += 10;
sprintf(buffer, _("Credits per minute: %i").c_str(), (int)(60*value/this->gameLength));