aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/region.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sludge/region.cpp')
-rw-r--r--engines/sludge/region.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/sludge/region.cpp b/engines/sludge/region.cpp
index d7fba70d42..af9e2b8cac 100644
--- a/engines/sludge/region.cpp
+++ b/engines/sludge/region.cpp
@@ -22,6 +22,7 @@
#include "sludge/allfiles.h"
#include "sludge/backdrop.h"
+#include "sludge/event.h"
#include "sludge/graphics.h"
#include "sludge/moreio.h"
#include "sludge/newfatal.h"
@@ -34,7 +35,6 @@ namespace Sludge {
ScreenRegion *allScreenRegions = NULL;
ScreenRegion *overRegion = NULL;
-extern InputType input;
void showBoxes() {
ScreenRegion*huntRegion = allScreenRegions;
@@ -147,10 +147,10 @@ void getOverRegion() {
int cameraY = g_sludge->_gfxMan->getCamY();
ScreenRegion *thisRegion = allScreenRegions;
while (thisRegion) {
- if ((input.mouseX >= thisRegion->x1 - cameraX)
- && (input.mouseY >= thisRegion->y1 - cameraY)
- && (input.mouseX <= thisRegion->x2 - cameraX)
- && (input.mouseY <= thisRegion->y2 - cameraY)) {
+ if ((g_sludge->_evtMan->mouseX() >= thisRegion->x1 - cameraX)
+ && (g_sludge->_evtMan->mouseY() >= thisRegion->y1 - cameraY)
+ && (g_sludge->_evtMan->mouseX() <= thisRegion->x2 - cameraX)
+ && (g_sludge->_evtMan->mouseY() <= thisRegion->y2 - cameraY)) {
overRegion = thisRegion;
return;
}