diff options
-rw-r--r-- | AUTHORS | 10 | ||||
-rw-r--r-- | gui/credits.h | 6 | ||||
-rwxr-xr-x | tools/credits.pl | 10 |
3 files changed, 20 insertions, 6 deletions
@@ -74,14 +74,14 @@ ScummVM Team Paul Gilbert Vincent Hamm - (retired) + Draci: + Denis Kasak + Robert Spalek + Drascula: Filippos Karapetis Pawel Kolodziejski - Draci: - Denis Kasak - Robert Spalek - FOTAQ: David Eriksson - (retired) Gregory Montoir @@ -432,6 +432,6 @@ Special thanks to Alan Bridgman, Simon Woodroffe and everyone at Adventure Soft for sharing the source code of some of their games with us. - John Young, Colin Smythe and especially Terry Patchet himself for sharing + John Young, Colin Smythe and especially Terry Patchett himself for sharing the source code of Discworld I & II with us. diff --git a/gui/credits.h b/gui/credits.h index 79d68ab8f4..511c9ad7ca 100644 --- a/gui/credits.h +++ b/gui/credits.h @@ -92,6 +92,10 @@ static const char *credits[] = { "C0""Vincent Hamm", "C2""(retired)", "", +"C1""Draci", +"C0""Denis Kasak", +"C0""Robert \352palek", +"", "C1""Drascula", "C0""Filippos Karapetis", "C0""Pawel Kolodziejski", @@ -516,7 +520,7 @@ static const char *credits[] = { "C0""", "C0""Alan Bridgman, Simon Woodroffe and everyone at Adventure Soft for sharing the source code of some of their games with us.", "C0""", -"C0""John Young, Colin Smythe and especially Terry Patchet himself for sharing the source code of Discworld I & II with us.", +"C0""John Young, Colin Smythe and especially Terry Patchett himself for sharing the source code of Discworld I & II with us.", "C0""", "", }; diff --git a/tools/credits.pl b/tools/credits.pl index 744f2658e9..2603e4c6d5 100755 --- a/tools/credits.pl +++ b/tools/credits.pl @@ -69,11 +69,13 @@ sub html_entities_to_ascii { # ü -> ue # & -> & # ł -> l + # Š -> S $text =~ s/á/a/g; $text =~ s/é/e/g; $text =~ s/ó/o/g; $text =~ s/ø/o/g; $text =~ s/ł/l/g; + $text =~ s/Š/S/g; $text =~ s/ä/a/g; $text =~ s/ü/ue/g; @@ -95,6 +97,7 @@ sub html_entities_to_cpp { $text =~ s/ó/\\363/g; $text =~ s/ø/\\370/g; $text =~ s/ł/l/g; + $text =~ s/Š/\\352/g; $text =~ s/ä/\\344/g; $text =~ s/ö/\\366/g; @@ -114,6 +117,7 @@ sub html_entities_to_rtf { $text =~ s/ó/\\'97/g; $text =~ s/ø/\\'bf/g; $text =~ s/ł/\\uc0\\u322 /g; + $text =~ s/Š/\\uc0\\u352 /g; $text =~ s/ä/\\'8a/g; $text =~ s/ö/\\'9a/g; @@ -133,6 +137,7 @@ sub html_entities_to_tex { $text =~ s/ó/\\'o/g; $text =~ s/ø/{\\o}/g; $text =~ s/ł/{\\l}/g; + $text =~ s/Š/{\\v S}/g; $text =~ s/ä/\\"a/g; $text =~ s/ö/\\"o/g; @@ -542,6 +547,11 @@ begin_credits("Credits"); add_person("Vincent Hamm", "yaz0r", "(retired)"); end_section(); + begin_section("Draci"); + add_person("Denis Kasak", "dkasak13", ""); + add_person("Robert Špalek", "spalek", ""); + end_section(); + begin_section("Drascula"); add_person("Filippos Karapetis", "[md5]", ""); add_person("Paweł Kołodziejski", "aquadran", ""); |