aboutsummaryrefslogtreecommitdiff
path: root/devtools
diff options
context:
space:
mode:
authorTravis McKay2018-05-28 19:04:34 -0700
committerThierry Crozat2018-05-29 20:29:40 +0100
commitb9fd745e45216e4202b31a95f2c4ded7d60279d2 (patch)
tree3f573617f7cd27d55efc6002b2c2de2ddf841f06 /devtools
parentdc03220be0e95f90e698b1686244b76481275484 (diff)
downloadscummvm-rg350-b9fd745e45216e4202b31a95f2c4ded7d60279d2.tar.gz
scummvm-rg350-b9fd745e45216e4202b31a95f2c4ded7d60279d2.tar.bz2
scummvm-rg350-b9fd745e45216e4202b31a95f2c4ded7d60279d2.zip
DEVTOOLS: Fix RTF credits encoding inconsistencies
Diffstat (limited to 'devtools')
-rwxr-xr-xdevtools/credits.pl7
1 files changed, 4 insertions, 3 deletions
diff --git a/devtools/credits.pl b/devtools/credits.pl
index 135d3a809e..68a014deab 100755
--- a/devtools/credits.pl
+++ b/devtools/credits.pl
@@ -137,15 +137,16 @@ sub html_entities_to_rtf {
$text =~ s/ó/\\'97/g;
$text =~ s/ø/\\'bf/g;
$text =~ s/å/\\'8c/g;
- # The following numerical values are octal!
+ # The following numerical values are decimal!
$text =~ s/ł/\\uc0\\u322 /g;
- $text =~ s/Š/\\uc0\\u540 /g;
+ $text =~ s/ś/\\uc0\\u347 /g;
+ $text =~ s/Š/\\uc0\\u352 /g;
# Back to hex numbers
$text =~ s/ñ/\\'96/g;
$text =~ s/ä/\\'8a/g;
- $text =~ s/ë/\\'eb/g;
+ $text =~ s/ë/\\'91/g;
$text =~ s/ö/\\'9a/g;
$text =~ s/ü/\\'9f/g;