aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra
diff options
context:
space:
mode:
authorathrxx2018-11-08 21:57:27 +0100
committerathrxx2018-11-14 17:22:23 +0100
commit91c463184d9a2ed429baae343039f28c9671d523 (patch)
treebb3be7035d39f07507e53349f372b9cd5d48aedc /engines/kyra
parent09f513fb1134492ed69798897414611dd8a05e83 (diff)
downloadscummvm-rg350-91c463184d9a2ed429baae343039f28c9671d523.tar.gz
scummvm-rg350-91c463184d9a2ed429baae343039f28c9671d523.tar.bz2
scummvm-rg350-91c463184d9a2ed429baae343039f28c9671d523.zip
KYRA: (EOB II FM-TOWNS) - fix mouse cursor hot spot
Diffstat (limited to 'engines/kyra')
-rw-r--r--engines/kyra/screen_eob.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/screen_eob.cpp b/engines/kyra/screen_eob.cpp
index 629d00ce4a..4eae318753 100644
--- a/engines/kyra/screen_eob.cpp
+++ b/engines/kyra/screen_eob.cpp
@@ -187,7 +187,7 @@ void Screen_EoB::setMouseCursor(int x, int y, const byte *shape, const uint8 *ov
colorKey = _16bitConversionPalette ? _16bitConversionPalette[colorKey] : colorKey;
Graphics::PixelFormat pixelFormat = _system->getScreenFormat();
- CursorMan.replaceCursor(cursor, mouseW * scaleFactor, mouseH * scaleFactor, x, y, colorKey, false, &pixelFormat);
+ CursorMan.replaceCursor(cursor, mouseW * scaleFactor, mouseH * scaleFactor, x * scaleFactor, y * scaleFactor, colorKey, false, &pixelFormat);
if (isMouseVisible())
CursorMan.showMouse(true);
delete[] cursor;