aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/video.h
diff options
context:
space:
mode:
authorSven Hesse2007-04-06 13:30:09 +0000
committerSven Hesse2007-04-06 13:30:09 +0000
commita17df6e4c6dfa7f73989837b468411670ae463b0 (patch)
treecb1b97f300eb435b855368cf6477c17725713932 /engines/gob/video.h
parent0df4d74ae67389aba7fa34bdf08ac41674ca1747 (diff)
downloadscummvm-rg350-a17df6e4c6dfa7f73989837b468411670ae463b0.tar.gz
scummvm-rg350-a17df6e4c6dfa7f73989837b468411670ae463b0.tar.bz2
scummvm-rg350-a17df6e4c6dfa7f73989837b468411670ae463b0.zip
Some Gob3 fixes:
- wrong positioning of the inventory - walking - close-up fadeing in the CD version svn-id: r26390
Diffstat (limited to 'engines/gob/video.h')
-rw-r--r--engines/gob/video.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/gob/video.h b/engines/gob/video.h
index 066f411f29..d3d297d8cb 100644
--- a/engines/gob/video.h
+++ b/engines/gob/video.h
@@ -107,6 +107,7 @@ public:
int16 height, int16 flags);
void retrace(bool mouse = true);
void waitRetrace(bool mouse = true);
+ void sparseRetrace(int max);
void putPixel(int16 x, int16 y, int16 color, SurfaceDesc *dest);
void fillRect(SurfaceDesc *dest, int16 left, int16 top,
@@ -150,6 +151,10 @@ public:
protected:
class VideoDriver *_videoDriver;
+
+ int _curSparse;
+ uint32 _lastSparse;
+
GobEngine *_vm;
char initDriver(int16 vidMode);