aboutsummaryrefslogtreecommitdiff
path: root/scumm/cursor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/cursor.cpp')
-rw-r--r--scumm/cursor.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/scumm/cursor.cpp b/scumm/cursor.cpp
index 5d321c1706..4a96da63b7 100644
--- a/scumm/cursor.cpp
+++ b/scumm/cursor.cpp
@@ -144,6 +144,10 @@ void ScummEngine::setCursorFromBuffer(byte *ptr, int width, int height, int pitc
}
void ScummEngine_v70he::setCursorFromImg(uint img, uint room, uint imgindex) {
+ // HACK Macintosh cursors aren't supported yet.
+ if (_features & GF_MACINTOSH && _heversion == 72)
+ return;
+
_win32ResExtractor->setCursor(img);
}