aboutsummaryrefslogtreecommitdiff
path: root/engines/mortevielle/graphics.cpp
diff options
context:
space:
mode:
authorStrangerke2014-01-09 08:21:52 +0100
committerStrangerke2014-01-09 08:21:52 +0100
commitd8d4a2c3bb635151e3c044ab7b87496eb6854305 (patch)
tree81cd1f110e3750f81c8f9375cb47a24f61082296 /engines/mortevielle/graphics.cpp
parent0a5d92527dae7c8b0fc49dbfef186016d16da499 (diff)
downloadscummvm-rg350-d8d4a2c3bb635151e3c044ab7b87496eb6854305.tar.gz
scummvm-rg350-d8d4a2c3bb635151e3c044ab7b87496eb6854305.tar.bz2
scummvm-rg350-d8d4a2c3bb635151e3c044ab7b87496eb6854305.zip
MORTEVIELLE: Get rid of setParent() in Menu and MouseHandler
Diffstat (limited to 'engines/mortevielle/graphics.cpp')
-rw-r--r--engines/mortevielle/graphics.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/mortevielle/graphics.cpp b/engines/mortevielle/graphics.cpp
index daf7926438..7a7e9265c5 100644
--- a/engines/mortevielle/graphics.cpp
+++ b/engines/mortevielle/graphics.cpp
@@ -1070,7 +1070,7 @@ void ScreenSurface::drawString(const Common::String &l, int command) {
if (l == "")
return;
- _vm->_mouse.hideMouse();
+ _vm->_mouse->hideMouse();
Common::Point pt = _textPos;
int charWidth = 6;
@@ -1102,7 +1102,7 @@ void ScreenSurface::drawString(const Common::String &l, int command) {
_vm->_screenSurface.writeCharacter(Common::Point(pt.x, pt.y), l[x - 1], color);
pt.x += charWidth;
}
- _vm->_mouse.showMouse();
+ _vm->_mouse->showMouse();
}
/**