aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2010-02-10 17:08:07 +0000
committerMax Horn2010-02-10 17:08:07 +0000
commitc2c82b22da2a6c7e0f1528d10ac2349a9a5d6487 (patch)
treea2f5dfd227a4a23699115bb132540c0f8471040f
parentb90acf431b81909c50bf925220c0c1550e8c8fc6 (diff)
downloadscummvm-rg350-c2c82b22da2a6c7e0f1528d10ac2349a9a5d6487.tar.gz
scummvm-rg350-c2c82b22da2a6c7e0f1528d10ac2349a9a5d6487.tar.bz2
scummvm-rg350-c2c82b22da2a6c7e0f1528d10ac2349a9a5d6487.zip
Fix Rober Spalek & Hans-Joerg Frieden in the CPP resp. plain text versions of the credits
svn-id: r48034
-rw-r--r--AUTHORS2
-rw-r--r--gui/credits.h2
-rwxr-xr-xtools/credits.pl11
3 files changed, 9 insertions, 6 deletions
diff --git a/AUTHORS b/AUTHORS
index a0cc337685..a3ed023da0 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -264,7 +264,7 @@ Other contributions
Packages
--------
AmigaOS 4:
- Hans-Jorg Frieden - (retired)
+ Hans-Joerg Frieden - (retired)
Hubert Maier
Juha Niemimaki - (retired)
diff --git a/gui/credits.h b/gui/credits.h
index 37daa9d6cb..a504d2fa14 100644
--- a/gui/credits.h
+++ b/gui/credits.h
@@ -94,7 +94,7 @@ static const char *credits[] = {
"",
"C1""Draci",
"C0""Denis Kasak",
-"C0""Robert \352palek",
+"C0""Robert Spalek",
"",
"C1""Drascula",
"C0""Filippos Karapetis",
diff --git a/tools/credits.pl b/tools/credits.pl
index d3902d359e..0fdc1fd1de 100755
--- a/tools/credits.pl
+++ b/tools/credits.pl
@@ -79,8 +79,8 @@ sub html_entities_to_ascii {
$text =~ s/ä/a/g;
$text =~ s/ü/ue/g;
- # HACK: Torbj*o*rn but G*oe*ffringmann and R*oe*ver
- $text =~ s/ör/or/g;
+ # HACK: Torbj*o*rn but G*oe*ffringmann and R*oe*ver and J*oe*rg
+ $text =~ s/Torbjörn/Torbjorn/g;
$text =~ s/ö/oe/g;
$text =~ s/&/&/g;
@@ -92,12 +92,13 @@ sub html_entities_to_ascii {
sub html_entities_to_cpp {
my $text = shift;
+ # The numerical values are octal!
$text =~ s/á/\\341/g;
$text =~ s/é/\\351/g;
$text =~ s/ó/\\363/g;
$text =~ s/ø/\\370/g;
$text =~ s/ł/l/g;
- $text =~ s/Š/\\352/g;
+ $text =~ s/Š/S/g;
$text =~ s/ä/\\344/g;
$text =~ s/ö/\\366/g;
@@ -116,9 +117,11 @@ sub html_entities_to_rtf {
$text =~ s/é/\\'8e/g;
$text =~ s/ó/\\'97/g;
$text =~ s/ø/\\'bf/g;
+ # The following numerical values are octal!
$text =~ s/ł/\\uc0\\u322 /g;
- $text =~ s/Š/\\uc0\\u352 /g;
+ $text =~ s/Š/\\uc0\\u540 /g;
+ # Back to hex numbers
$text =~ s/ä/\\'8a/g;
$text =~ s/ö/\\'9a/g;
$text =~ s/ü/\\'9f/g;