aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob/util.cpp')
-rw-r--r--engines/gob/util.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/gob/util.cpp b/engines/gob/util.cpp
index 6dfa5b4d7c..5eec30e617 100644
--- a/engines/gob/util.cpp
+++ b/engines/gob/util.cpp
@@ -28,6 +28,8 @@
#include "gob/game.h"
#include "gob/inter.h"
+#include "common/events.h"
+
namespace Gob {
Util::Util(GobEngine *vm) : _vm(vm) {
@@ -139,7 +141,8 @@ int16 Util::getRandom(int16 max) {
void Util::processInput() {
OSystem::Event event;
- while (g_system->pollEvent(event)) {
+ Common::EventManager *eventMan = g_system->getEventManager();
+ while (eventMan->pollEvent(event)) {
switch (event.type) {
case OSystem::EVENT_MOUSEMOVE:
_mouseX = event.mouse.x;