aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorMax Horn2003-08-28 19:20:30 +0000
committerMax Horn2003-08-28 19:20:30 +0000
commit898bbc85d0aa856c2f80a18acd3163cff59ebe63 (patch)
tree54db7a9aa7c48979f0c185f4d19aaa1ad899e633 /scumm
parent876fe0ac8aa0d94274af02ce38eea9ea3e058d90 (diff)
downloadscummvm-rg350-898bbc85d0aa856c2f80a18acd3163cff59ebe63.tar.gz
scummvm-rg350-898bbc85d0aa856c2f80a18acd3163cff59ebe63.tar.bz2
scummvm-rg350-898bbc85d0aa856c2f80a18acd3163cff59ebe63.zip
double cursor animation speed (see bug #757191)
svn-id: r9895
Diffstat (limited to 'scumm')
-rw-r--r--scumm/gfx.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index b2cb92d8a9..fecb9ca257 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -3491,8 +3491,8 @@ void Scumm::updateCursor() {
void Scumm::animateCursor() {
if (_cursor.animate) {
- if (!(_cursor.animateIndex & 0x3)) {
- decompressDefaultCursor((_cursor.animateIndex >> 2) & 3);
+ if (!(_cursor.animateIndex & 0x1)) {
+ decompressDefaultCursor((_cursor.animateIndex >> 1) & 3);
}
_cursor.animateIndex++;
}