diff options
author | Travis Howell | 2009-10-26 12:35:15 +0000 |
---|---|---|
committer | Travis Howell | 2009-10-26 12:35:15 +0000 |
commit | c669b8472ce8ee5dde6bb712c2df0a4cd0bf2202 (patch) | |
tree | 779bb6172fc54cf641b8f373d8079126836a55a6 /engines/scumm | |
parent | bf20d530a310c19d01be7e92143fd081819777f7 (diff) | |
download | scummvm-rg350-c669b8472ce8ee5dde6bb712c2df0a4cd0bf2202.tar.gz scummvm-rg350-c669b8472ce8ee5dde6bb712c2df0a4cd0bf2202.tar.bz2 scummvm-rg350-c669b8472ce8ee5dde6bb712c2df0a4cd0bf2202.zip |
Fix cursor image in PCE version of Loom.
svn-id: r45404
Diffstat (limited to 'engines/scumm')
-rw-r--r-- | engines/scumm/cursor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/cursor.cpp b/engines/scumm/cursor.cpp index e39825f265..55f3af45ad 100644 --- a/engines/scumm/cursor.cpp +++ b/engines/scumm/cursor.cpp @@ -552,7 +552,7 @@ void ScummEngine_v5::setBuiltinCursor(int idx) { for (j = 0; j < 16; j++) { if (src[i] & (1 << j)) { if (_bytesPerPixel == 2) - WRITE_UINT16(_grabbedCursor + 16 * i + (15 - j) * 2, _16BitPalette[color]); + WRITE_UINT16(_grabbedCursor + 32 * i + (15 - j) * 2, _16BitPalette[color]); else _grabbedCursor[16 * i + 15 - j] = color; } |