aboutsummaryrefslogtreecommitdiff
path: root/engines/cge2/events.cpp
diff options
context:
space:
mode:
authoruruk2014-07-28 22:28:33 +0200
committeruruk2014-07-28 22:28:33 +0200
commitdd1637af9f8847be7077dc7962c1a4f4d527de95 (patch)
tree4531b66a631af7264735aa7a86ad5e8d42e34ad3 /engines/cge2/events.cpp
parentdb6cab7a6f92855b2264f1899011346dc2e1b91d (diff)
downloadscummvm-rg350-dd1637af9f8847be7077dc7962c1a4f4d527de95.tar.gz
scummvm-rg350-dd1637af9f8847be7077dc7962c1a4f4d527de95.tar.bz2
scummvm-rg350-dd1637af9f8847be7077dc7962c1a4f4d527de95.zip
CGE2: Fix initialization of Mouse.
Diffstat (limited to 'engines/cge2/events.cpp')
-rw-r--r--engines/cge2/events.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cge2/events.cpp b/engines/cge2/events.cpp
index 25ca77fa74..ccddc25505 100644
--- a/engines/cge2/events.cpp
+++ b/engines/cge2/events.cpp
@@ -129,7 +129,7 @@ void Keyboard::newKeyboard(Common::Event &event) {
/*----------------- MOUSE interface -----------------*/
-Mouse::Mouse(CGE2Engine *vm) : Sprite(vm), _busy(nullptr), _hold(nullptr), _hx(0), _point(_vm), _vm(vm) {
+Mouse::Mouse(CGE2Engine *vm) : Sprite(vm), _busy(nullptr), _hold(nullptr), _hx(0), _point(vm), _vm(vm) {
_hold = nullptr;
_hx = 0;
_hy = 0;