aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTarek Soliman2012-02-18 22:20:34 -0600
committerTarek Soliman2012-02-18 22:23:06 -0600
commitf608b94a5dddac80ad003fa5b1196d372624551f (patch)
treebbcbe7794686931bdb0298e932b76d11a9ac63c3
parentab4420b3ca591f707ea831cb077e88b800986471 (diff)
downloadscummvm-rg350-f608b94a5dddac80ad003fa5b1196d372624551f.tar.gz
scummvm-rg350-f608b94a5dddac80ad003fa5b1196d372624551f.tar.bz2
scummvm-rg350-f608b94a5dddac80ad003fa5b1196d372624551f.zip
COMMON: Fix value of EVENT_CUSTOM_BACKEND
I failed to see that the enum was not ordered
-rw-r--r--common/events.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/events.h b/common/events.h
index d3c7064499..ab0c0a543a 100644
--- a/common/events.h
+++ b/common/events.h
@@ -78,7 +78,7 @@ enum EventType {
,
// IMPORTANT NOTE: This is part of the WIP Keymapper. If you plan to use
// this, please talk to tsoliman and/or LordHoto.
- EVENT_CUSTOM_BACKEND = 13
+ EVENT_CUSTOM_BACKEND = 18
#endif
};