misc_gui.c
changeset 1392 7b08188ca3be
parent 1390 53a5713cf3f9
child 1397 b04402b901cd
--- a/misc_gui.c	Mon Feb 21 19:14:16 2005 +0000
+++ b/misc_gui.c	Tue Feb 22 11:33:13 2005 +0000
@@ -199,7 +199,6 @@
 	"  Marcin Grzegorczyk - Foundations for Tracks on Slopes",
 	"  All Translators - Who made OpenTTD a truly international game",
 	"  Bug Reporters - Without whom OpenTTD would still be full of bugs!",
-	NULL,
 	"",
 	"",
 	"And last but not least:",
@@ -214,8 +213,6 @@
 		WP(w, scroller_d).height = w->height - 40;
 		break;
 	case WE_PAINT: {
-		const char *str;
-		char buffer[100];
 		uint i;
 		int y = WP(w, scroller_d).height;
 		DrawWindowWidgets(w);
@@ -227,16 +224,7 @@
 		// Show all scrolling credits
 		for (i = 0; i < lengthof(credits); i++) {
 			if (y >= 50 && y < (w->height - 40)) {
-				str = credits[i];
-				/* Hack-Alert: Translated by is a dynamic string as it changes
-				 * with the language chosen. So the special value of NULL is used
-				 * to identify this for the moment */
-				if (str == NULL) {
-					GetString(buffer, STR_TRANSLATED_BY);
-					str = buffer;
-				}
-
-			 DoDrawString(str, 10, y, 0x10);
+				DoDrawString(credits[i], 10, y, 0x10);
 			}
 			y += 10;
 		}