aboutsummaryrefslogtreecommitdiff
path: root/scumm/cursor.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-05-14 14:06:37 +0000
committerTravis Howell2005-05-14 14:06:37 +0000
commit93be3e16d8f9e6f8edec316ec749e189b2f33cc8 (patch)
tree002e60c05c198e3588243d5b46b50356615b8d6a /scumm/cursor.cpp
parent30d4f8634137787033d3a6be96673a96f0863b4f (diff)
downloadscummvm-rg350-93be3e16d8f9e6f8edec316ec749e189b2f33cc8.tar.gz
scummvm-rg350-93be3e16d8f9e6f8edec316ec749e189b2f33cc8.tar.bz2
scummvm-rg350-93be3e16d8f9e6f8edec316ec749e189b2f33cc8.zip
Add configure option to disable HE 70+ games.
svn-id: r18091
Diffstat (limited to 'scumm/cursor.cpp')
-rw-r--r--scumm/cursor.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/scumm/cursor.cpp b/scumm/cursor.cpp
index 553fff66ca..a923f4897c 100644
--- a/scumm/cursor.cpp
+++ b/scumm/cursor.cpp
@@ -156,12 +156,14 @@ void ScummEngine::setCursorFromBuffer(byte *ptr, int width, int height, int pitc
updateCursor();
}
+#ifndef DISABLE_HE
void ScummEngine_v70he::setCursorFromImg(uint img, uint room, uint imgindex) {
if (_platform == Common::kPlatformMacintosh && _heversion == 72)
_macResExtractor->setCursor(img);
else
_win32ResExtractor->setCursor(img);
}
+#endif
void ScummEngine_v90he::setDefaultCursor() {
const uint16 *src;