diff options
author | Eugene Sandulenko | 2015-11-30 20:08:55 +0100 |
---|---|---|
committer | Willem Jan Palenstijn | 2015-12-23 21:33:45 +0100 |
commit | fa8d319e3106f1b8ee5c8ebfcb2e8a8df8ca5bf0 (patch) | |
tree | b9bd06692c99ecf1f7c0ea2771507f5fa002ffca | |
parent | 6d4b71e2ce21aa9843aa90522e972a95f3966bd6 (diff) | |
download | scummvm-rg350-fa8d319e3106f1b8ee5c8ebfcb2e8a8df8ca5bf0.tar.gz scummvm-rg350-fa8d319e3106f1b8ee5c8ebfcb2e8a8df8ca5bf0.tar.bz2 scummvm-rg350-fa8d319e3106f1b8ee5c8ebfcb2e8a8df8ca5bf0.zip |
LAB: More renames
-rw-r--r-- | engines/lab/engine.cpp | 2 | ||||
-rw-r--r-- | engines/lab/lab.h | 2 | ||||
-rw-r--r-- | engines/lab/vga.cpp | 2 |
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; |