diff options
author | Max Horn | 2009-01-14 18:52:25 +0000 |
---|---|---|
committer | Max Horn | 2009-01-14 18:52:25 +0000 |
commit | ce39c26d147bb74f80ef30f6fd55f8fd63f65635 (patch) | |
tree | d9b28126c1f221d12d81828684a782d235a61140 /engines/groovie | |
parent | bb82b0be977449243ba3f79a6f9a2c6b4fb4b311 (diff) | |
download | scummvm-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
Diffstat (limited to 'engines/groovie')
-rw-r--r-- | engines/groovie/cursor.cpp | 2 |
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() { |