[Scummvm-cvs-logs] scummvm master -> 88b3fc7c66d327370a34dd8cc5c168aa6f4f7f34
dreammaster
dreammaster at scummvm.org
Fri Apr 8 12:45:21 CEST 2011
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
88b3fc7c66 TINSEL: Added numeric key mappings for function keys
Commit: 88b3fc7c66d327370a34dd8cc5c168aa6f4f7f34
https://github.com/scummvm/scummvm/commit/88b3fc7c66d327370a34dd8cc5c168aa6f4f7f34
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2011-04-08T03:43:41-07:00
Commit Message:
TINSEL: Added numeric key mappings for function keys
Changed paths:
engines/tinsel/tinsel.cpp
diff --git a/engines/tinsel/tinsel.cpp b/engines/tinsel/tinsel.cpp
index 1b31737..e1396f9 100644
--- a/engines/tinsel/tinsel.cpp
+++ b/engines/tinsel/tinsel.cpp
@@ -218,14 +218,17 @@ void KeyboardProcess(CORO_PARAM, const void *) {
continue;
#endif
+ case Common::KEYCODE_1:
case Common::KEYCODE_F1:
// Options dialog
ProcessKeyEvent(PLR_MENU);
continue;
+ case Common::KEYCODE_5:
case Common::KEYCODE_F5:
// Save game
ProcessKeyEvent(PLR_SAVE);
continue;
+ case Common::KEYCODE_7:
case Common::KEYCODE_F7:
// Load game
ProcessKeyEvent(PLR_LOAD);
More information about the Scummvm-git-logs
mailing list