diff options
author | Eugene Sandulenko | 2016-02-26 22:17:29 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2016-02-26 22:17:29 +0100 |
commit | 480ebbf2b4a8ae15c7d5acefc40ef0eb7f1654ba (patch) | |
tree | c27fa8b4996ca62c0587abbfe07c9af5e5b85202 | |
parent | 81be047eb403eb1274967297f1b24658d29a2f09 (diff) | |
download | scummvm-rg350-480ebbf2b4a8ae15c7d5acefc40ef0eb7f1654ba.tar.gz scummvm-rg350-480ebbf2b4a8ae15c7d5acefc40ef0eb7f1654ba.tar.bz2 scummvm-rg350-480ebbf2b4a8ae15c7d5acefc40ef0eb7f1654ba.zip |
CREDITS: Added myself as GCW0 porter
-rw-r--r-- | AUTHORS | 3 | ||||
-rwxr-xr-x | devtools/credits.pl | 14 | ||||
-rw-r--r-- | gui/credits.h | 3 |
3 files changed, 15 insertions, 5 deletions
@@ -285,6 +285,9 @@ ScummVM Team Dreamcast: Marcus Comstedt + GCW0: + Eugene Sandulenko + GPH Devices (GP2X, GP2XWiz & Caanoo): John Willis diff --git a/devtools/credits.pl b/devtools/credits.pl index d7cd26fbdc..c67793cbfa 100755 --- a/devtools/credits.pl +++ b/devtools/credits.pl @@ -287,7 +287,7 @@ sub begin_section { # headlines... my $ascii_title = html_entities_to_ascii($title); $title = html_entities_to_cpp($title); - if ($ascii_title ne $title) { + if ($ascii_title ne $title) { print '"A1""'.$ascii_title.'",' . "\n"; } print '"C1""'.$title.'",' . "\n"; @@ -295,7 +295,7 @@ sub begin_section { } else { my $ascii_title = html_entities_to_ascii($title); $title = html_entities_to_cpp($title); - if ($ascii_title ne $title) { + if ($ascii_title ne $title) { print '"A1""'.$ascii_title.'",' . "\n"; } print '"C1""'.$title.'",' . "\n"; @@ -428,7 +428,7 @@ sub add_person { if (length $desc > 0) { my $ascii_desc = html_entities_to_ascii($desc); $desc = html_entities_to_cpp($desc); - if ($ascii_desc ne $desc) { + if ($ascii_desc ne $desc) { print '"A2""'.$ascii_desc.'",' . "\n"; } print '"C2""'.$desc.'",' . "\n"; @@ -572,7 +572,7 @@ begin_credits("Credits"); add_person("Arnaud Boutonné", "Strangerke", ""); add_person("Paul Gilbert", "dreammaster", ""); end_section(); - + begin_section("CGE2"); add_person("Peter Bozsó", "uruk", ""); add_person("Arnaud Boutonné", "Strangerke", ""); @@ -803,7 +803,7 @@ begin_credits("Credits"); add_person("Einar Johan T. Sømåen", "somaen", ""); add_person("Tobia Tesan", "t0by", ""); end_section(); - + begin_section("Z-Vision"); add_person("Adrian Astley", "RichieSams", ""); add_person("Filippos Karapetis", "[md5]", ""); @@ -823,6 +823,10 @@ begin_credits("Credits"); add_person("Marcus Comstedt", "", ""); end_section(); + begin_section("GCW0"); + add_person("Eugene Sandulenko", "", ""); + end_section(); + begin_section("GPH Devices (GP2X, GP2XWiz & Caanoo)"); add_person("John Willis", "DJWillis", ""); end_section(); diff --git a/gui/credits.h b/gui/credits.h index cda523bb79..cb9a10fec4 100644 --- a/gui/credits.h +++ b/gui/credits.h @@ -347,6 +347,9 @@ static const char *credits[] = { "C1""Dreamcast", "C0""Marcus Comstedt", "", +"C1""GCW0", +"C0""Eugene Sandulenko", +"", "C1""GPH Devices (GP2X, GP2XWiz & Caanoo)", "C0""John Willis", "", |