diff options
author | Tarek Soliman | 2011-10-15 01:42:05 -0500 |
---|---|---|
committer | Tarek Soliman | 2011-10-27 10:46:22 -0500 |
commit | a69340bd59eae5146634a47b66b2f09ace91b01f (patch) | |
tree | ce623fbd8b441e9351ff8d018ff5566f3761e2b7 | |
parent | 5e2ab7435d6deb13565de3240d2cf13e12f95f12 (diff) | |
download | scummvm-rg350-a69340bd59eae5146634a47b66b2f09ace91b01f.tar.gz scummvm-rg350-a69340bd59eae5146634a47b66b2f09ace91b01f.tar.bz2 scummvm-rg350-a69340bd59eae5146634a47b66b2f09ace91b01f.zip |
BASE: Make global keymap inherit
-rw-r--r-- | base/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/main.cpp b/base/main.cpp index 5d0c0ea09a..61a05154c1 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -288,7 +288,7 @@ static void setupKeymapper(OSystem &system) { mapper->addGlobalKeymap(globalMap); - mapper->pushKeymap("global"); + mapper->pushKeymap("global", true); #endif } |