diff options
author | Paweł Kołodziejski | 2003-04-11 20:21:32 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2003-04-11 20:21:32 +0000 |
commit | 6fef5f77ad87ae86a3012142d03c47e779199305 (patch) | |
tree | 73728639b52a083dbbf57d51faeb89a80cfe16c8 /scumm | |
parent | 51b430b088ce805d14ed61f9e38a5e12ea8825e9 (diff) | |
download | scummvm-rg350-6fef5f77ad87ae86a3012142d03c47e779199305.tar.gz scummvm-rg350-6fef5f77ad87ae86a3012142d03c47e779199305.tar.bz2 scummvm-rg350-6fef5f77ad87ae86a3012142d03c47e779199305.zip |
fix for cursor image in the loom ega
svn-id: r6975
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/script_v5.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
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); |