aboutsummaryrefslogtreecommitdiff
path: root/engines/bladerunner/mouse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/bladerunner/mouse.cpp')
-rw-r--r--engines/bladerunner/mouse.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/engines/bladerunner/mouse.cpp b/engines/bladerunner/mouse.cpp
index 8293cbc59c..35059f4e00 100644
--- a/engines/bladerunner/mouse.cpp
+++ b/engines/bladerunner/mouse.cpp
@@ -35,7 +35,8 @@
namespace BladeRunner {
-Mouse::Mouse(BladeRunnerEngine *vm) : _vm(vm) {
+Mouse::Mouse(BladeRunnerEngine *vm) {
+ _vm = vm;
_cursor = 0;
_frame = 3;
_hotspotX = 0;
@@ -149,7 +150,7 @@ void Mouse::setCursor(int cursor) {
}
}
-void Mouse::getXY(int *x, int *y) {
+void Mouse::getXY(int *x, int *y) const {
*x = _x;
*y = _y;
}
@@ -164,7 +165,7 @@ void Mouse::enable() {
}
}
-bool Mouse::isDisabled() {
+bool Mouse::isDisabled() const {
return _disabledCounter > 0;
}
@@ -311,7 +312,7 @@ void Mouse::tick(int x, int y) {
}
// TEST: RC01 after intro: [290, 216] -> [-204.589249 51.450668 7.659241]
-Vector3 Mouse::getXYZ(int x, int y) {
+Vector3 Mouse::getXYZ(int x, int y) const {
if (_vm->_scene->getSetId() == -1)
return Vector3();