aboutsummaryrefslogtreecommitdiff
path: root/engines/m4/viewmgr.h
diff options
context:
space:
mode:
authorPaul Gilbert2009-12-20 07:09:40 +0000
committerPaul Gilbert2009-12-20 07:09:40 +0000
commitb729218bb6f48a7e57cd938f76ca0065983b792e (patch)
treef939869ed15565eabab224fb831493e34169bd89 /engines/m4/viewmgr.h
parent3da285432b0debb46e2f544b06a442cce47c256f (diff)
downloadscummvm-rg350-b729218bb6f48a7e57cd938f76ca0065983b792e.tar.gz
scummvm-rg350-b729218bb6f48a7e57cd938f76ca0065983b792e.tar.bz2
scummvm-rg350-b729218bb6f48a7e57cd938f76ca0065983b792e.zip
Changed the M4 event handler to encode the keyboard flags into KEVENT_KEY events
svn-id: r46424
Diffstat (limited to 'engines/m4/viewmgr.h')
-rw-r--r--engines/m4/viewmgr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/m4/viewmgr.h b/engines/m4/viewmgr.h
index 59bd02019b..0da41f1b5e 100644
--- a/engines/m4/viewmgr.h
+++ b/engines/m4/viewmgr.h
@@ -135,7 +135,7 @@ public:
HotkeyList &hotkeys() { return _hotkeys; }
virtual void onRefresh(RectList *rects, M4Surface *destSurface);
- virtual bool onEvent(M4EventType eventType, int param, int x, int y, bool &captureEvents) { return false; }
+ virtual bool onEvent(M4EventType eventType, int32 param, int x, int y, bool &captureEvents) { return false; }
virtual void updateState() {};
protected: