aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine
diff options
context:
space:
mode:
authorColin Snover2017-09-24 22:11:34 -0500
committerColin Snover2017-09-24 22:56:58 -0500
commit76806732e032771d51d9015720d32eeed874a3cd (patch)
treeddb525f968be24ff8357dcb9549975a5e9f95a81 /engines/sci/engine
parentd935ea80c3cafb185c307f082a73d5fa4685df25 (diff)
downloadscummvm-rg350-76806732e032771d51d9015720d32eeed874a3cd.tar.gz
scummvm-rg350-76806732e032771d51d9015720d32eeed874a3cd.tar.bz2
scummvm-rg350-76806732e032771d51d9015720d32eeed874a3cd.zip
SCI: Remove Mac SCI32 code from SCI16 code
Diffstat (limited to 'engines/sci/engine')
-rw-r--r--engines/sci/engine/kgraphics.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/sci/engine/kgraphics.cpp b/engines/sci/engine/kgraphics.cpp
index e5336b37bc..f2111cad4c 100644
--- a/engines/sci/engine/kgraphics.cpp
+++ b/engines/sci/engine/kgraphics.cpp
@@ -189,8 +189,7 @@ static reg_t kSetCursorSci11(EngineState *s, int argc, reg_t *argv) {
hotspot = new Common::Point(argv[3].toSint16(), argv[4].toSint16());
// Fallthrough
case 3:
- if (g_sci->getPlatform() == Common::kPlatformMacintosh && g_sci->getGameId() != GID_TORIN) {
- // Torin Mac seems to be the only game that uses view cursors
+ if (g_sci->getPlatform() == Common::kPlatformMacintosh) {
delete hotspot; // Mac cursors have their own hotspot, so ignore any we get here
g_sci->_gfxCursor->kernelSetMacCursor(argv[0].toUint16(), argv[1].toUint16(), argv[2].toUint16());
} else {