CREDITS: Credits for original sources

This commit is contained in:
Eugene Sandulenko 2012-07-20 14:50:00 -04:00
parent b4d1063161
commit 6d18bddbb5
3 changed files with 22 additions and 0 deletions

View file

@ -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.

View file

@ -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();

View file

@ -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""",
"",
};