aboutsummaryrefslogtreecommitdiff
path: root/devtools
diff options
context:
space:
mode:
Diffstat (limited to 'devtools')
-rwxr-xr-xdevtools/credits.pl11
1 files changed, 11 insertions, 0 deletions
diff --git a/devtools/credits.pl b/devtools/credits.pl
index 411ec3c10d..7a7766657b 100755
--- a/devtools/credits.pl
+++ b/devtools/credits.pl
@@ -69,6 +69,7 @@ sub html_entities_to_ascii {
# å -> aa
# & -> &
# ł -> l
+ # ś -> s
# Š -> S
$text =~ s/á/a/g;
$text =~ s/é/e/g;
@@ -76,6 +77,7 @@ sub html_entities_to_ascii {
$text =~ s/ó/o/g;
$text =~ s/ø/o/g;
$text =~ s/ł/l/g;
+ $text =~ s/ś/s/g;
$text =~ s/Š/S/g;
$text =~ s/å/aa/g;
@@ -101,6 +103,7 @@ sub html_entities_to_cpp {
$text =~ s/ó/\\363/g;
$text =~ s/ø/\\370/g;
$text =~ s/ł/l/g;
+ $text =~ s/ś/s/g;
$text =~ s/Š/S/g;
$text =~ s/å/\\345/g;
@@ -1127,6 +1130,14 @@ begin_credits("Credits");
"Broken Sword 2.5 team for providing sources of their engine and their great ".
"support.");
+ add_paragraph(
+ "Neil Dodwell and David Dew from Creative Reality for providing the source ".
+ "of Dreamweb and for their tremendous support.");
+
+ add_paragraph(
+ "Janusz Wiśniewski and Miroslaw Liminowicz from Laboratorium Komputerowe Avalon ".
+ "for providing full source code for Sołtys and letting us to redistribute the game.");
+
end_section();
end_credits();