aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/lab/engine.cpp2
-rw-r--r--engines/lab/lab.h2
-rw-r--r--engines/lab/vga.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/engines/lab/engine.cpp b/engines/lab/engine.cpp
index b7970ae171..05a219606e 100644
--- a/engines/lab/engine.cpp
+++ b/engines/lab/engine.cpp
@@ -737,7 +737,7 @@ void LabEngine::mainGameLoop() {
GotMessage = true;
mayShowCrumbIndicator();
screenUpdate();
- if (!from_crumbs(GADGETUP, code, 0, WSDL_GetMousePos(), curInv, curMsg, forceDraw, code, actionMode))
+ if (!from_crumbs(GADGETUP, code, 0, getMousePos(), curInv, curMsg, forceDraw, code, actionMode))
break;
}
}
diff --git a/engines/lab/lab.h b/engines/lab/lab.h
index 7cca82512f..0b2e777021 100644
--- a/engines/lab/lab.h
+++ b/engines/lab/lab.h
@@ -190,7 +190,7 @@ private:
/*---------- Drawing Routines ----------*/
void drawMaskImage(Image *Im, uint16 x, uint16 y);
- Common::Point WSDL_GetMousePos();
+ Common::Point getMousePos();
void changeVolume(int delta);
void applyPalette(byte *buf, uint16 first, uint16 numreg, uint16 slow);
diff --git a/engines/lab/vga.cpp b/engines/lab/vga.cpp
index bb313e18b4..79261dff02 100644
--- a/engines/lab/vga.cpp
+++ b/engines/lab/vga.cpp
@@ -166,7 +166,7 @@ void LabEngine::processInput(bool can_delay) {
g_system->delayMillis(10);
}
-Common::Point LabEngine::WSDL_GetMousePos() {
+Common::Point LabEngine::getMousePos() {
processInput();
return _mousePos;