aboutsummaryrefslogtreecommitdiff
path: root/engines/sci
diff options
context:
space:
mode:
authorEugene Sandulenko2019-12-26 15:40:54 +0100
committerEugene Sandulenko2019-12-26 15:40:54 +0100
commita2cbc18d61c75b11ddc400a2f87dddbf0f11ae97 (patch)
tree153a93a2a79fe2f19eef6e43433908c01fc7be39 /engines/sci
parentc88da94585fccdb1a59f02a8f57f19fe8f3db372 (diff)
downloadscummvm-rg350-a2cbc18d61c75b11ddc400a2f87dddbf0f11ae97.tar.gz
scummvm-rg350-a2cbc18d61c75b11ddc400a2f87dddbf0f11ae97.tar.bz2
scummvm-rg350-a2cbc18d61c75b11ddc400a2f87dddbf0f11ae97.zip
SCI: Fix lowercase Alt+'n' for Polish
Diffstat (limited to 'engines/sci')
-rw-r--r--engines/sci/event.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/event.cpp b/engines/sci/event.cpp
index 8a9664744b..f403834d44 100644
--- a/engines/sci/event.cpp
+++ b/engines/sci/event.cpp
@@ -90,7 +90,7 @@ static const uint16 UTF16toWin1250[] = {
// Table for transferring Alt+<Key> into Polish symbols
static const byte PolishAltifytoWin1250[] = {
- 'e', 0xea, 'o', 0xf3, 'a', 0xb9, 's', 0x9c, 'l', 0xb3, 'z', 0xbf, 'x', 0x9f, 'c', 0xe6, 'n', 0xF2,
+ 'e', 0xea, 'o', 0xf3, 'a', 0xb9, 's', 0x9c, 'l', 0xb3, 'z', 0xbf, 'x', 0x9f, 'c', 0xe6, 'n', 0xF1,
'E', 0xca, 'O', 0xd3, 'A', 0xa5, 'S', 0x8c, 'L', 0xa3, 'Z', 0xaf, 'X', 0x8f, 'C', 0xc6, 'N', 0xD1,
0
};