aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2009-01-14 18:52:25 +0000
committerMax Horn2009-01-14 18:52:25 +0000
commitce39c26d147bb74f80ef30f6fd55f8fd63f65635 (patch)
treed9b28126c1f221d12d81828684a782d235a61140
parentbb82b0be977449243ba3f79a6f9a2c6b4fb4b311 (diff)
downloadscummvm-rg350-ce39c26d147bb74f80ef30f6fd55f8fd63f65635.tar.gz
scummvm-rg350-ce39c26d147bb74f80ef30f6fd55f8fd63f65635.tar.bz2
scummvm-rg350-ce39c26d147bb74f80ef30f6fd55f8fd63f65635.zip
-1 is not an uint8. Assuming ones-complement, though, I guess 255 was meant
svn-id: r35865
-rw-r--r--engines/groovie/cursor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/groovie/cursor.cpp b/engines/groovie/cursor.cpp
index a8a125bfe9..d7d9592420 100644
--- a/engines/groovie/cursor.cpp
+++ b/engines/groovie/cursor.cpp
@@ -33,7 +33,7 @@ namespace Groovie {
// Cursor Manager
GrvCursorMan::GrvCursorMan(OSystem *system) :
- _syst(system), _lastTime(0), _current(-1), _cursor(NULL) {
+ _syst(system), _lastTime(0), _current(255), _cursor(NULL) {
}
GrvCursorMan::~GrvCursorMan() {