KeymapManager - implemented loading/saving of keymaps

- Refactoring of code to map a key to a UserAction - now we call a method on UserAction to do it (and it then tells the Keymap class)
- General cleanup of code

svn-id: r33262
This commit is contained in:
Stephen Kennedy 2008-07-24 10:00:56 +00:00
parent 2f064da102
commit dfcdbb0d33
13 changed files with 171 additions and 82 deletions

View file

@ -103,7 +103,7 @@ bool VirtualKeyboard::loadKeyboardPack(Common::String packName) {
return false;
}
} else {
warning("Could not find %s.xml file in %s.zip keyboard pack\n", packName.c_str(), packName.c_str());
warning("Could not find %s.xml file in %s.zip keyboard pack", packName.c_str(), packName.c_str());
unzClose(zipFile);
return false;
}