summaryrefslogtreecommitdiff
path: root/misc_gui.c
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2005-07-19 22:12:04 +0000
committerDarkvater <darkvater@openttd.org>2005-07-19 22:12:04 +0000
commitf0c0c03c5f6eceafa0b10f40f413e893d02f34e8 (patch)
tree2510f3eedd1c2af25757fd24b0d1d4fd12437bc6 /misc_gui.c
parent7c694f25537097f380d7215082b42eea51e86815 (diff)
downloadopenttd-f0c0c03c5f6eceafa0b10f40f413e893d02f34e8.tar.xz
(svn r2644) - Fix: my name was mistyped ;p
- Add DoDrawStringCentered() and change the multiline strings in the about box to single-line ones
Diffstat (limited to 'misc_gui.c')
-rw-r--r--misc_gui.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/misc_gui.c b/misc_gui.c
index b012469b6..47c07702c 100644
--- a/misc_gui.c
+++ b/misc_gui.c
@@ -188,7 +188,7 @@ static const char *credits[] = {
" Matthijs Kooijman (blathijs) - Pathfinder-god",
" Bjarni Corfitzen (Bjarni) - MacOSX port, coder",
" Victor Fischer (Celestar) - Programming everywhere you need him to",
- " Tamas Faragó (Darkvater) - Lead coder",
+ " Tamás Faragó (Darkvater) - Lead coder",
" Kerekes Miham (MiHaMiX) - Translator system, and Nightlies host",
" Owen Rudge (orudge) - Forum- and masterserver host, OS/2 port",
" Christoph Mallon (Tron) - Programmer, code correctness police",
@@ -246,7 +246,8 @@ static void AboutWindowProc(Window *w, WindowEvent *e)
// If the last text has scrolled start anew from the start
if (y < 50) WP(w, scroller_d).height = w->height - 40;
- DrawStringMultiCenter(210, w->height - 15, STR_00BA_COPYRIGHT_OPENTTD, 398);
+ DoDrawStringCentered(210, w->height - 25, "Website: http://www.openttd.org", 16);
+ DrawStringCentered(210, w->height - 15, STR_00BA_COPYRIGHT_OPENTTD, 0);
} break;
case WE_MOUSELOOP: /* Timer to scroll the text and adjust the new top */
if (WP(w, scroller_d).counter++ % 3 == 0) {