aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins/events.h
diff options
context:
space:
mode:
authorStrangerke2013-04-11 12:17:06 +0200
committerStrangerke2013-04-11 12:17:06 +0200
commit54e3df0140c2d37257132dc8a62520ec8febfc36 (patch)
tree7988e9e3d27b0716bc4378022b6ad9c1ff24aa7c /engines/hopkins/events.h
parente56123b18f55e14a304480c905477813127146b2 (diff)
downloadscummvm-rg350-54e3df0140c2d37257132dc8a62520ec8febfc36.tar.gz
scummvm-rg350-54e3df0140c2d37257132dc8a62520ec8febfc36.tar.bz2
scummvm-rg350-54e3df0140c2d37257132dc8a62520ec8febfc36.zip
HOPKINS: Constify some functions and members
Diffstat (limited to 'engines/hopkins/events.h')
-rw-r--r--engines/hopkins/events.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/hopkins/events.h b/engines/hopkins/events.h
index 1c3b3b1c28..f4dedce1c5 100644
--- a/engines/hopkins/events.h
+++ b/engines/hopkins/events.h
@@ -48,7 +48,7 @@ private:
HopkinsEngine *_vm;
void pollEvents();
- void handleKey(Common::Event &event);
+ void handleKey(const Common::Event &event);
void checkForNextFrameCounter();
void updateCursor();
@@ -75,7 +75,7 @@ public:
void initMouseData();
void delay(int totalMilli);
- void changeMouseCursor(const int id);
+ void changeMouseCursor(int id);
void refreshEvents();
int waitKeyPress();
int getMouseX();