diff options
author | Eugene Sandulenko | 2004-12-25 16:03:36 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2004-12-25 16:03:36 +0000 |
commit | 26a719e7242d7292ed45c879757416dc495fd8e6 (patch) | |
tree | fd7c98973c28f65f98965b06d785c9887f1d65c9 /tools | |
parent | aee60ae1eea800e36c6c08c47e3cacbb89520f1f (diff) | |
download | scummvm-rg350-26a719e7242d7292ed45c879757416dc495fd8e6.tar.gz scummvm-rg350-26a719e7242d7292ed45c879757416dc495fd8e6.tar.bz2 scummvm-rg350-26a719e7242d7292ed45c879757416dc495fd8e6.zip |
Update devs with SAGA and HE engines
Check Text::Wrap version
svn-id: r16312
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/credits.pl | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/tools/credits.pl b/tools/credits.pl index 92e1852b03..2b75d7d2b6 100755 --- a/tools/credits.pl +++ b/tools/credits.pl @@ -17,6 +17,10 @@ use strict; use Text::Wrap; +if ($Text::Wrap::VERSION < 2001.0929) { + die "Text::Wrap version >= 2001.0929 is required. You have $Text::Wrap::VERSION\n"; +} + my $mode = ""; my $max_name_width; my $indent; @@ -217,16 +221,17 @@ begin_credits("Credits"); begin_section("The ScummVM team"); add_person('James Brown', 'endy', "Lead developer"); add_person('Max Horn', 'fingolfin', "Lead developer"); - add_person("Torbjörn Andersson", "eriktorbjorn", "Engine: SCUMM, Broken Sword II"); + add_person("Torbjörn Andersson", "eriktorbjorn", "Engine: SCUMM, Broken Sword II, SAGA"); add_person("David Eriksson", "twogood", "Engine: Flight of the Amazon Queen"); add_person("Robert Göffringmann", "lavosspawn", "Engine: Beneath a Steel Sky, Broken Sword I"); - add_person("Jonathan Gray", "khalek", "Engine: SCUMM, Broken Sword II"); - add_person("Travis Howell", "Kirben", "Engine: SCUMM, Simon the Sorcerer"); + add_person("Jonathan Gray", "khalek", "Engine: SCUMM, HE, Broken Sword II"); + add_person("Travis Howell", "Kirben", "Engine: SCUMM, HE, Simon the Sorcerer"); add_person("Oliver Kiehl", "olki", "Engine: Beneath a Steel Sky, Simon"); - add_person("Pawel Kolodziejski", "aquadran", "Engine: SCUMM (Codecs, iMUSE, Smush, etc.)"); - add_person("Gregory Montoir", "cyx", "Engine: Flight of the Amazon Queen"); + add_person("Pawel Kolodziejski", "aquadran", "Engine: SCUMM (Codecs, iMUSE, Smush, etc)"); + add_person("Gregory Montoir", "cyx", "Engine: Flight of the Amazon Queen, HE"); add_person("Joost Peters", "joostp", "Engine: Beneath a Steel Sky, Flight of the Amazon Queen"); - add_person("Eugene Sandulenko", "_sev", "Engine: SCUMM (FT INSANE, bugfixes)"); + add_person("Eugene Sandulenko", "_sev", "Engine: SCUMM (FT INSANE), HE, SAGA"); + add_person("Andrew Kurushin", "ajax16384", "Engine: SAGA"); add_person("Chris Apers", "chrilith ", "Port: PalmOS"); add_person("Nicolas Bacca", "arisme", "Port: PocketPC/WinCE"); add_person("Marcus Comstedt", "", "Port: Dreamcast"); |