aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorJames Brown2003-07-05 10:57:38 +0000
committerJames Brown2003-07-05 10:57:38 +0000
commit1d22c76469458febabe29de7b131f573d3dc34dc (patch)
tree4a1c403108fcd758e8fd06bfc70c5c37e516d762 /scumm
parent6c2ac4b481bdcdf2ffebaaf2125d0a63d576d28f (diff)
downloadscummvm-rg350-1d22c76469458febabe29de7b131f573d3dc34dc.tar.gz
scummvm-rg350-1d22c76469458febabe29de7b131f573d3dc34dc.tar.bz2
scummvm-rg350-1d22c76469458febabe29de7b131f573d3dc34dc.zip
Update about dialog. Will somebody please move the About dialog to Common so we can also display it from the launcher? :)
svn-id: r8770
Diffstat (limited to 'scumm')
-rw-r--r--scumm/dialogs.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/scumm/dialogs.cpp b/scumm/dialogs.cpp
index 849e63bee4..6747dd5cbc 100644
--- a/scumm/dialogs.cpp
+++ b/scumm/dialogs.cpp
@@ -582,10 +582,12 @@ AboutDialog::AboutDialog(NewGui *gui, Scumm *scumm)
: ScummDialog(gui, scumm, 30, 20, 260, 124) {
addButton((_w - kButtonWidth)/2, 100, queryCustomString(23), kCloseCmd, 'C'); // Close dialog - FIXME
new StaticTextWidget(this, 10, 10, 240, 16, "ScummVM " SCUMMVM_VERSION " (" SCUMMVM_CVS ")", kTextAlignCenter);
+ new StaticTextWidget(this, 10, 20, 240, 16, "(built on " __DATE__ ")", kTextAlignCenter);
+
new StaticTextWidget(this, 10, 30, 240, 16, "http://www.scummvm.org", kTextAlignCenter);
- new StaticTextWidget(this, 10, 50, 240, 16, "All games (c) LucasArts", kTextAlignCenter);
- new StaticTextWidget(this, 10, 64, 240, 16, "Except", kTextAlignCenter);
- new StaticTextWidget(this, 10, 78, 240, 16, "Simon the Sorcerer (c) Adventuresoft", kTextAlignCenter);
+ new StaticTextWidget(this, 10, 50, 240, 16, "SCUMM Games (c) LucasArts", kTextAlignCenter);
+ new StaticTextWidget(this, 10, 64, 240, 16, "Simon the Sorcerer (c) Adventuresoft", kTextAlignCenter);
+ new StaticTextWidget(this, 10, 78, 240, 16, "Beneath a Steel Sky (c) Revolution", kTextAlignCenter);
}
#ifndef DISABLE_HELP