diff options
author | Stephen Kennedy | 2008-07-24 10:00:56 +0000 |
---|---|---|
committer | Stephen Kennedy | 2008-07-24 10:00:56 +0000 |
commit | dfcdbb0d335128c99d13ba017a4e36f2338f7736 (patch) | |
tree | 727f48a0e5e589229788b0c42b0a73cafd31b39e /backends/common/virtual-keyboard.cpp | |
parent | 2f064da1021344f28c9106285475c72930638390 (diff) | |
download | scummvm-rg350-dfcdbb0d335128c99d13ba017a4e36f2338f7736.tar.gz scummvm-rg350-dfcdbb0d335128c99d13ba017a4e36f2338f7736.tar.bz2 scummvm-rg350-dfcdbb0d335128c99d13ba017a4e36f2338f7736.zip |
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
Diffstat (limited to 'backends/common/virtual-keyboard.cpp')
-rw-r--r-- | backends/common/virtual-keyboard.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/common/virtual-keyboard.cpp b/backends/common/virtual-keyboard.cpp index 21d188dced..0a061df545 100644 --- a/backends/common/virtual-keyboard.cpp +++ b/backends/common/virtual-keyboard.cpp @@ -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; } |