diff options
author | uruk | 2014-07-28 22:28:33 +0200 |
---|---|---|
committer | uruk | 2014-07-28 22:28:33 +0200 |
commit | dd1637af9f8847be7077dc7962c1a4f4d527de95 (patch) | |
tree | 4531b66a631af7264735aa7a86ad5e8d42e34ad3 | |
parent | db6cab7a6f92855b2264f1899011346dc2e1b91d (diff) | |
download | scummvm-rg350-dd1637af9f8847be7077dc7962c1a4f4d527de95.tar.gz scummvm-rg350-dd1637af9f8847be7077dc7962c1a4f4d527de95.tar.bz2 scummvm-rg350-dd1637af9f8847be7077dc7962c1a4f4d527de95.zip |
CGE2: Fix initialization of Mouse.
-rw-r--r-- | engines/cge2/events.cpp | 2 |
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; |