KEYMAPPER: Actions can now be bound to joystick buttons
This commit is contained in:
parent
85f476070b
commit
32174c9067
19 changed files with 238 additions and 292 deletions
|
@ -184,9 +184,9 @@ static const Common::KeyTableEntry maemoKeys[] = {
|
|||
};
|
||||
|
||||
Common::HardwareInputSet *OSystem_SDL_Maemo::getHardwareInputSet() {
|
||||
Common::CompositeHardwareInputSet inputSet = new Common::CompositeHardwareInputSet();
|
||||
inputSet->addHardwareInputSet(new Common::KeyboardHardwareInputSet(maemoKeys, defaultModifiers));
|
||||
inputSet->addHardwareInputSet(new Common::KeyboardHardwareInputSet(defaultKeys, defaultModifiers));
|
||||
Common::CompositeHardwareInputSet *inputSet = new Common::CompositeHardwareInputSet();
|
||||
inputSet->addHardwareInputSet(new Common::KeyboardHardwareInputSet(maemoKeys, Common::defaultModifiers));
|
||||
inputSet->addHardwareInputSet(new Common::KeyboardHardwareInputSet(Common::defaultKeys, Common::defaultModifiers));
|
||||
|
||||
return inputSet;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue