diff options
author | Jody Northup | 2009-08-18 08:00:24 +0000 |
---|---|---|
committer | Jody Northup | 2009-08-18 08:00:24 +0000 |
commit | dfaa5acbee5766e59b35697ea1b03122aa4ea2aa (patch) | |
tree | fb06e849c8fad9a4a81f68a12e5d2d2397ed0098 /backends/keymapper/action.cpp | |
parent | 445b01676ee13fde91042094585376c2674fe606 (diff) | |
download | scummvm-rg350-dfaa5acbee5766e59b35697ea1b03122aa4ea2aa.tar.gz scummvm-rg350-dfaa5acbee5766e59b35697ea1b03122aa4ea2aa.tar.bz2 scummvm-rg350-dfaa5acbee5766e59b35697ea1b03122aa4ea2aa.zip |
Starting to simplify the Action structure, and rework it to facilitate making the automatic mapper smarter, at least when there is a keyboard present. Fixed a minor whitespace issue in a comment.
svn-id: r43502
Diffstat (limited to 'backends/keymapper/action.cpp')
-rw-r--r-- | backends/keymapper/action.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/keymapper/action.cpp b/backends/keymapper/action.cpp index 1f4efbf457..4633f20df3 100644 --- a/backends/keymapper/action.cpp +++ b/backends/keymapper/action.cpp @@ -32,9 +32,9 @@ namespace Common { Action::Action(Keymap *boss, const char *i, String des, ActionType typ, - KeyType prefKey, int pri, int flg) + KeyType prefKey, int pri) : _boss(boss), description(des), type(typ), preferredKey(prefKey), - priority(pri), flags(flg), _hwKey(0) { + priority(pri), _hwKey(0) { assert(i); assert(_boss); |