From 6fef5f77ad87ae86a3012142d03c47e779199305 Mon Sep 17 00:00:00 2001 From: Paweł Kołodziejski Date: Fri, 11 Apr 2003 20:21:32 +0000 Subject: fix for cursor image in the loom ega svn-id: r6975 --- scumm/script_v5.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp index be17c23b3c..634c295d60 100644 --- a/scumm/script_v5.cpp +++ b/scumm/script_v5.cpp @@ -623,8 +623,11 @@ void Scumm_v5::o5_cursorCommand() { case 10: /* set cursor img */ i = getVarOrDirectByte(0x80); j = getVarOrDirectByte(0x40); - if (_gameId != GID_LOOM256) + // cursor image in both Looms is based on image from charset + // omit for now + if ((_gameId != GID_LOOM256) && (_gameId != GID_LOOM)) { setCursorImg(i, j, 1); + } break; case 11: /* set cursor hotspot */ i = getVarOrDirectByte(0x80); -- cgit v1.2.3