diff options
author | Martin Kiewitz | 2010-06-19 10:28:41 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-06-19 10:28:41 +0000 |
commit | 101218c1b6843692d82e992372e5ac8af81393d5 (patch) | |
tree | c8ec9bf93e4ad26660055743ffb8043bf2291489 /engines | |
parent | a7fa0649dfc71c79f496a86986413f35c8d36966 (diff) | |
download | scummvm-rg350-101218c1b6843692d82e992372e5ac8af81393d5.tar.gz scummvm-rg350-101218c1b6843692d82e992372e5ac8af81393d5.tar.bz2 scummvm-rg350-101218c1b6843692d82e992372e5ac8af81393d5.zip |
SCI: added TODO for keyboard driver size check, maybe this whole stuff isn't needed at all
svn-id: r50046
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/event.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/sci/event.cpp b/engines/sci/event.cpp index 6c9e95a804..7931e8266b 100644 --- a/engines/sci/event.cpp +++ b/engines/sci/event.cpp @@ -42,6 +42,8 @@ EventManager::EventManager(bool fontIsExtended) : _fontIsExtended(fontIsExtended } else if (getSciVersion() <= SCI_VERSION_01) { _usesNewKeyboardDirectionType = false; } else { + // TODO: maybe this is even not needed at all and we can just use the old method for sci1early + // sq4 floppy doesn't have issues when using the old method although the keyboard driver is new // they changed this somewhere inbetween SCI1EGA/EARLY, so we need to check the size of the keyboard driver _usesNewKeyboardDirectionType = false; |