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.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/engines/bladerunner/mouse.cpp b/engines/bladerunner/mouse.cpp
index ab58d7f2aa..3dfd1fe57e 100644
--- a/engines/bladerunner/mouse.cpp
+++ b/engines/bladerunner/mouse.cpp
@@ -270,9 +270,9 @@ void Mouse::tick(int x, int y) {
Vector3 mousePosition = getXYZ(x, y);
int cursorId = 0;
- int isClickable = 0;
- int isObstacle = 0;
- int isTarget = 0;
+ bool isClickable = false;
+ bool isObstacle = false;
+ bool isTarget = false;
int sceneObjectId = _vm->_sceneObjects->findByXYZ(&isClickable, &isObstacle, &isTarget, mousePosition.x, mousePosition.y, mousePosition.z, 1, 0, 1);
int exitType = _vm->_scene->_exits->getTypeAtXY(x, y);
@@ -283,17 +283,17 @@ void Mouse::tick(int x, int y) {
if (exitType != -1) {
switch (exitType) {
- case 1:
- cursorId = 13;
- break;
- case 2:
- cursorId = 14;
- break;
- case 3:
- cursorId = 15;
- break;
- default:
- cursorId = 12;
+ case 1:
+ cursorId = 13;
+ break;
+ case 2:
+ cursorId = 14;
+ break;
+ case 3:
+ cursorId = 15;
+ break;
+ default:
+ cursorId = 12;
}
setCursor(cursorId);
return;