1
0
Fork 0

(svn r1896) - Fix: remove Translated by hack since it's not used

release/0.4.5
Darkvater 2005-02-22 11:33:13 +00:00
parent 33ae18b8b3
commit fbe47d912a
1 changed files with 1 additions and 13 deletions

View File

@ -199,7 +199,6 @@ static const char *credits[] = {
" Marcin Grzegorczyk - Foundations for Tracks on Slopes", " Marcin Grzegorczyk - Foundations for Tracks on Slopes",
" All Translators - Who made OpenTTD a truly international game", " All Translators - Who made OpenTTD a truly international game",
" Bug Reporters - Without whom OpenTTD would still be full of bugs!", " Bug Reporters - Without whom OpenTTD would still be full of bugs!",
NULL,
"", "",
"", "",
"And last but not least:", "And last but not least:",
@ -214,8 +213,6 @@ static void AboutWindowProc(Window *w, WindowEvent *e)
WP(w, scroller_d).height = w->height - 40; WP(w, scroller_d).height = w->height - 40;
break; break;
case WE_PAINT: { case WE_PAINT: {
const char *str;
char buffer[100];
uint i; uint i;
int y = WP(w, scroller_d).height; int y = WP(w, scroller_d).height;
DrawWindowWidgets(w); DrawWindowWidgets(w);
@ -227,16 +224,7 @@ static void AboutWindowProc(Window *w, WindowEvent *e)
// Show all scrolling credits // Show all scrolling credits
for (i = 0; i < lengthof(credits); i++) { for (i = 0; i < lengthof(credits); i++) {
if (y >= 50 && y < (w->height - 40)) { if (y >= 50 && y < (w->height - 40)) {
str = credits[i]; DoDrawString(credits[i], 10, y, 0x10);
/* 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);
} }
y += 10; y += 10;
} }