aboutsummaryrefslogtreecommitdiff
path: root/gfx.cpp
diff options
context:
space:
mode:
authorJames Brown2002-06-29 10:28:43 +0000
committerJames Brown2002-06-29 10:28:43 +0000
commit3bdb376afd0a2cc75fcded7b9e6b830f32473c25 (patch)
treee6a160645177cb9de57072ea03c2004e6b57701e /gfx.cpp
parenta88b78fc371e08f73839c564726f96358f84a8b1 (diff)
downloadscummvm-rg350-3bdb376afd0a2cc75fcded7b9e6b830f32473c25.tar.gz
scummvm-rg350-3bdb376afd0a2cc75fcded7b9e6b830f32473c25.tar.bz2
scummvm-rg350-3bdb376afd0a2cc75fcded7b9e6b830f32473c25.zip
Start of (non-functional) Simon2dos support.
Implement the holy (sic) cursor. svn-id: r4436
Diffstat (limited to 'gfx.cpp')
-rw-r--r--gfx.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/gfx.cpp b/gfx.cpp
index 21db83f0ce..dae9d96c70 100644
--- a/gfx.cpp
+++ b/gfx.cpp
@@ -2511,8 +2511,10 @@ void Scumm::decompressDefaultCursor(int idx)
color = default_cursor_colors[idx];
for (i = 0; i < 16; i++) {
- _grabbedCursor[16 * 8 + i] = color;
- _grabbedCursor[16 * i + 8] = color;
+ if ((i<7) || (i>9)) {
+ _grabbedCursor[16 * 8 + i] = color;
+ _grabbedCursor[16 * i + 8] = color;
+ }
}
updateCursor();