diff options
author | Martin Kiewitz | 2010-04-19 16:58:18 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-04-19 16:58:18 +0000 |
commit | 4fd93aa27cb0b8762c0233ce7f2746d2bdaee569 (patch) | |
tree | ba19928c13ce1c702a3a03ed99c05b81c773f47f /engines/sci | |
parent | 196f033e93450001ae30c9902c5bb35cec9de8d3 (diff) | |
download | scummvm-rg350-4fd93aa27cb0b8762c0233ce7f2746d2bdaee569.tar.gz scummvm-rg350-4fd93aa27cb0b8762c0233ce7f2746d2bdaee569.tar.bz2 scummvm-rg350-4fd93aa27cb0b8762c0233ce7f2746d2bdaee569.zip |
SCI: changed comment about 8859-1->cp850/437 conversion. ubuntu does work, i just used an outdated build by accident
svn-id: r48724
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/event.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/event.cpp b/engines/sci/event.cpp index 44e9d531bb..314427a547 100644 --- a/engines/sci/event.cpp +++ b/engines/sci/event.cpp @@ -185,7 +185,7 @@ sciEvent SciEvent::getFromScummVM() { // we get 8859-1 character, we need dos (cp850/437) character for multilingual sci01 games // TODO: check, if we get 8859-1 on all platforms // Currently checked: Windows XP (works), Wii w/ USB keyboard (works), Mac OS X (works) - // Ubuntu (does not work, seems to be UTF-8) + // Ubuntu (works) input.character = codepagemap_88591toDOS[input.character & 0x7f]; } if (input.data == Common::KEYCODE_TAB) { |