aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/draw.h
diff options
context:
space:
mode:
authorSven Hesse2009-08-24 22:37:09 +0000
committerSven Hesse2009-08-24 22:37:09 +0000
commit081fa85b140b3175f035a74a4fcced59539fea1d (patch)
tree6f877c49ee4ba55ab3c5fa0f53251dabf08e18bb /engines/gob/draw.h
parentcb202830267b52db4032abccf8e8f9af7c6dd245 (diff)
downloadscummvm-rg350-081fa85b140b3175f035a74a4fcced59539fea1d.tar.gz
scummvm-rg350-081fa85b140b3175f035a74a4fcced59539fea1d.tar.bz2
scummvm-rg350-081fa85b140b3175f035a74a4fcced59539fea1d.zip
Playtoons uses a variable space that exceeds 32767 bytes. Changing a few variables to unsigned makes the construction mode not crash anymore (though it now hangs in a loop)
svn-id: r43713
Diffstat (limited to 'engines/gob/draw.h')
-rw-r--r--engines/gob/draw.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/gob/draw.h b/engines/gob/draw.h
index 1da6ba4b74..c67299585b 100644
--- a/engines/gob/draw.h
+++ b/engines/gob/draw.h
@@ -119,8 +119,8 @@ public:
int16 _cursorWidth;
int16 _cursorHeight;
- int16 _cursorHotspotXVar;
- int16 _cursorHotspotYVar;
+ int32 _cursorHotspotXVar;
+ int32 _cursorHotspotYVar;
SurfaceDescPtr _cursorSprites;
SurfaceDescPtr _cursorSpritesBack;