Keymapper WIP:

* Implemented stack-based active map in Keymapper
* Started proper testing by adding code to OSystem_SDL to set up simple HardwareKeySet and Keymap

svn-id: r33660
This commit is contained in:
Stephen Kennedy 2008-08-06 14:21:05 +00:00
parent 1caf48b084
commit 57b13141af
14 changed files with 201 additions and 76 deletions

View file

@ -148,6 +148,9 @@ void OSystem_SDL::initBackend() {
_timerID = SDL_AddTimer(10, &timer_handler, _timer);
}
// Provide the keymapper with backend's set of keys
setupKeymapper();
// Invoke parent implementation of this method
OSystem::initBackend();