diff options
author | Yotam Barnoy | 2010-02-21 04:04:13 +0000 |
---|---|---|
committer | Yotam Barnoy | 2010-02-21 04:04:13 +0000 |
commit | ef330ed9b4e5d6252134ed137b042593f79d02a9 (patch) | |
tree | 919c4ae91efca10102936a1833251b48323b8983 /engines/draci | |
parent | cebb052e2cfd963b95d7357b7c21dc8c437e058a (diff) | |
download | scummvm-rg350-ef330ed9b4e5d6252134ed137b042593f79d02a9.tar.gz scummvm-rg350-ef330ed9b4e5d6252134ed137b042593f79d02a9.tar.bz2 scummvm-rg350-ef330ed9b4e5d6252134ed137b042593f79d02a9.zip |
Patch for bug 2943361 by littleboy, adding full kb modifier support to all engines + GUI and proper keypad handling
svn-id: r48101
Diffstat (limited to 'engines/draci')
-rw-r--r-- | engines/draci/draci.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/draci/draci.cpp b/engines/draci/draci.cpp index 31b2c28679..882b845f08 100644 --- a/engines/draci/draci.cpp +++ b/engines/draci/draci.cpp @@ -293,7 +293,7 @@ void DraciEngine::handleEvents() { } break; case Common::KEYCODE_F5: - if (event.kbd.flags == 0) { + if (event.kbd.hasFlags(0)) { openMainMenuDialog(); } break; |