diff options
author | Filippos Karapetis | 2011-12-30 00:12:45 +0200 |
---|---|---|
committer | Filippos Karapetis | 2011-12-30 00:12:45 +0200 |
commit | 1d3ff353730c26a3adba3599db70334630c1da94 (patch) | |
tree | 236a7890e6eb11b876782c35ebfb99f05060aa6e /backends/keymapper | |
parent | 410c9e0b30ae3f140bd55cfcfa05308d929da24e (diff) | |
download | scummvm-rg350-1d3ff353730c26a3adba3599db70334630c1da94.tar.gz scummvm-rg350-1d3ff353730c26a3adba3599db70334630c1da94.tar.bz2 scummvm-rg350-1d3ff353730c26a3adba3599db70334630c1da94.zip |
KEYMAPPER: Disable the (accidentally reenabled automatic mapper again
Diffstat (limited to 'backends/keymapper')
-rw-r--r-- | backends/keymapper/keymap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/keymapper/keymap.cpp b/backends/keymapper/keymap.cpp index d64b888702..6fc1b1e08d 100644 --- a/backends/keymapper/keymap.cpp +++ b/backends/keymapper/keymap.cpp @@ -199,7 +199,7 @@ bool Keymap::isComplete(const HardwareKeySet *hwKeys) { // - if an action finds a key with required type but a parent action with // higher priority is using it, that key is never used void Keymap::automaticMapping(HardwareKeySet *hwKeys) { -#if 1 //disabling the broken automapper for now +#if 0 //disabling the broken automapper for now // Create copies of action and key lists. List<Action*> actions(_actions); List<const HardwareKey*> keys(hwKeys->getHardwareKeys()); |