aboutsummaryrefslogtreecommitdiff
path: root/scumm.h
diff options
context:
space:
mode:
Diffstat (limited to 'scumm.h')
-rw-r--r--scumm.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/scumm.h b/scumm.h
index f7048f5f63..bbcf225d19 100644
--- a/scumm.h
+++ b/scumm.h
@@ -325,6 +325,8 @@ struct VirtScreen {
uint16 xstart;
byte tdirty[40];
byte bdirty[40];
+ byte *screenPtr;
+ byte *backBuf;
};
struct ActorWalkData {
@@ -919,6 +921,11 @@ public:
byte _fastMode;
char *getGameName();
+ /* video buffer */
+
+ byte _videoBuffer[320*200];
+ byte _svideoBuffer[320*200+4*320];
+
void scummInit();
void scummMain(int argc, char **argv);
int scummLoop(int delta);