diff options
author | Torbjörn Andersson | 2004-03-13 14:19:50 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2004-03-13 14:19:50 +0000 |
commit | ccd472c942bf7168de09c7f640e5370bd9316389 (patch) | |
tree | 393dcf414cfd576352eddaca48956a3e656304f7 /gui | |
parent | d2ef3ad20c80c2f939418a1d917191e9715f46f3 (diff) | |
download | scummvm-rg350-ccd472c942bf7168de09c7f640e5370bd9316389.tar.gz scummvm-rg350-ccd472c942bf7168de09c7f640e5370bd9316389.tar.bz2 scummvm-rg350-ccd472c942bf7168de09c7f640e5370bd9316389.zip |
Added FotAQ to the "About" window, after som discussion with Endy about the
exact wording of it.
svn-id: r13249
Diffstat (limited to 'gui')
-rw-r--r-- | gui/about.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gui/about.cpp b/gui/about.cpp index c90c1fe9ad..88bb98f87c 100644 --- a/gui/about.cpp +++ b/gui/about.cpp @@ -28,9 +28,9 @@ namespace GUI { AboutDialog::AboutDialog() - : Dialog(10, 20, 300, 154) { + : Dialog(10, 20, 300, 174) { - addButton((_w - kButtonWidth) / 2, 130, "OK", kCloseCmd, '\r'); // Close dialog - FIXME + addButton((_w - kButtonWidth) / 2, 150, "OK", kCloseCmd, '\r'); // Close dialog - FIXME Common::String version("ScummVM "); version += gScummVMVersion; @@ -55,6 +55,8 @@ AboutDialog::AboutDialog() new StaticTextWidget(this, 0, 95, _w, kLineHeight, "Simon the Sorcerer (C) Adventure Soft", kTextAlignCenter); new StaticTextWidget(this, 0, 105, _w, kLineHeight, "Beneath a Steel Sky (C) Revolution", kTextAlignCenter); new StaticTextWidget(this, 0, 115, _w, kLineHeight, "Broken Sword Games (C) Revolution", kTextAlignCenter); + new StaticTextWidget(this, 0, 125, _w, kLineHeight, "Flight of the Amazon Queen (C) John Passfield", kTextAlignCenter); + new StaticTextWidget(this, 0, 135, _w, kLineHeight, "and Steve Stamatiadis", kTextAlignCenter); } } // End of namespace GUI |