aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS7
-rwxr-xr-xdevtools/credits.pl11
-rw-r--r--gui/credits.h4
3 files changed, 22 insertions, 0 deletions
diff --git a/AUTHORS b/AUTHORS
index 387c602b84..7272d6baf6 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -597,3 +597,10 @@ Special thanks to
Broken Sword 2.5 team for providing sources of their engine and their
great support.
+ Neil Dodwell and David Dew from Creative Reality for providing the source
+ of Dreamweb and for their tremendous support.
+
+ Janusz Wisniewski and Miroslaw Liminowicz from Laboratorium Komputerowe
+ Avalon for providing full source code for Soltys and letting us to
+ redistribute the game.
+
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();
diff --git a/gui/credits.h b/gui/credits.h
index 7226864543..1b3ba82017 100644
--- a/gui/credits.h
+++ b/gui/credits.h
@@ -710,5 +710,9 @@ static const char *credits[] = {
"C0""",
"C0""Broken Sword 2.5 team for providing sources of their engine and their great support.",
"C0""",
+"C0""Neil Dodwell and David Dew from Creative Reality for providing the source of Dreamweb and for their tremendous support.",
+"C0""",
+"C0""Janusz Wisniewski and Miroslaw Liminowicz from Laboratorium Komputerowe Avalon for providing full source code for Soltys and letting us to redistribute the game.",
+"C0""",
"",
};