summaryrefslogtreecommitdiff
path: root/misc_gui.c
diff options
context:
space:
mode:
authordarkvater <darkvater@openttd.org>2004-08-17 15:31:04 +0000
committerdarkvater <darkvater@openttd.org>2004-08-17 15:31:04 +0000
commit0361d3d12ffa068c43b48e4420bab631e095803b (patch)
tree9d47abe02d64bf37ea0f16e8556c9716f1712069 /misc_gui.c
parent4e3ad7598f7eb167d2b1afdd3a4e2c2de34d2281 (diff)
downloadopenttd-0361d3d12ffa068c43b48e4420bab631e095803b.tar.xz
(svn r75) -Add proper crediting to graphics artists to about box.
-Change DEBUG lvl for GRF warnings/errors to 2, lvl 1 is used for copyright notices -Fix show currect filename when debugging grf files
Diffstat (limited to 'misc_gui.c')
-rw-r--r--misc_gui.c17
1 files changed, 11 insertions, 6 deletions
diff --git a/misc_gui.c b/misc_gui.c
index 0bae394a0..4928c95b4 100644
--- a/misc_gui.c
+++ b/misc_gui.c
@@ -188,11 +188,16 @@ static void AboutWindowProc(Window *w, WindowEvent *e)
x = 200;
y = 0;
- DrawStringCentered(x, y+=17, STR_00B6_COPYRIGHT_1995_CHRIS_SAWYER, 0);
- DrawStringCentered(x, y+=10, STR_00B7_VERSION_3_02_011_11TH_OCTOBER, 0);
- DrawStringCentered(x, y+=15, STR_00B8_DESIGNED_PROGRAMMED_BY, 0);
- DrawStringCentered(x, y+=10, STR_00B9_GRAPHICS_BY_SIMON_FOSTER, 0);
- DrawStringMultiCenter(x, y+0x73, STR_00BA_WINDOWS_95_CONVERSION_BY, 0x18E);
+ DrawStringCentered(x, y += 17, STR_00B6_ORIGINAL_COPYRIGHT, 0);
+ DrawStringCentered(x, y += 10, STR_00B7_VERSION, 0);
+ DrawString(20, y += 20, STR_00B8_ORIGINAL_DESIGN_PROGRAM, 0);
+ DrawString(20, y += 10, STR_00B9_ORIGINAL_GRAPHICS, 0);
+ DrawString(20, y += 30, STR_SPECIAL_THANKS, 0);
+ // will probably be dynamic when stringhandling is finally reworked.
+ DrawString(20, y += 10, STR_SPECIAL_THANKS_SIGNALS, 0);
+ DrawString(20, y += 10, STR_SPECIAL_THANKS_CANALS, 0);
+ DrawString(20, y += 10, STR_SPECIAL_THANKS_FOUNDATIONS, 0);
+ DrawStringMultiCenter(x, w->height - 15, STR_00BA_COPYRIGHT_OPENTTD, 0x18E);
break;
}
}
@@ -200,7 +205,7 @@ static void AboutWindowProc(Window *w, WindowEvent *e)
static const Widget _about_widgets[] = {
{ WWT_CLOSEBOX, 14, 0, 10, 0, 13, STR_00C5},
-{ WWT_CAPTION, 14, 11, 399, 0, 13, STR_015B_TRANSPORT_TYCOON_DELUXE},
+{ WWT_CAPTION, 14, 11, 399, 0, 13, STR_015B_OPENTTD},
{ WWT_PANEL, 14, 0, 399, 14, 271, 0x0},
{ WWT_LAST},
};