[Scummvm-cvs-logs] scummvm master -> 9b8b737fad2da90d3a4ec40029f876300c9d181a
sev-
sev at scummvm.org
Sun Oct 26 22:22:22 CET 2014
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:
9b8b737fad KEYMAPPER: Fix off-by-one error with keymapper action names
Commit: 9b8b737fad2da90d3a4ec40029f876300c9d181a
https://github.com/scummvm/scummvm/commit/9b8b737fad2da90d3a4ec40029f876300c9d181a
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2014-10-26T22:20:57+01:00
Commit Message:
KEYMAPPER: Fix off-by-one error with keymapper action names
Changed paths:
backends/keymapper/action.h
diff --git a/backends/keymapper/action.h b/backends/keymapper/action.h
index ed4bb86..17b1153 100644
--- a/backends/keymapper/action.h
+++ b/backends/keymapper/action.h
@@ -37,7 +37,7 @@ namespace Common {
struct HardwareInput;
class Keymap;
-#define ACTION_ID_SIZE (4)
+#define ACTION_ID_SIZE (5)
struct KeyActionEntry {
const KeyState ks;
More information about the Scummvm-git-logs
mailing list