aboutsummaryrefslogtreecommitdiff
path: root/scumm.h
diff options
context:
space:
mode:
authorVincent Hamm2002-04-21 21:20:32 +0000
committerVincent Hamm2002-04-21 21:20:32 +0000
commit7c95649ba565bce18496f5c0f54145bda9f09940 (patch)
tree7f49494c401eeb206fd7406a74f6e4d1bc4699b7 /scumm.h
parent1b1d5795a88cd00ac06c335fab34598a9aad2674 (diff)
downloadscummvm-rg350-7c95649ba565bce18496f5c0f54145bda9f09940.tar.gz
scummvm-rg350-7c95649ba565bce18496f5c0f54145bda9f09940.tar.bz2
scummvm-rg350-7c95649ba565bce18496f5c0f54145bda9f09940.zip
Some code cleanup in the blast object code for implementation of futur features
svn-id: r4039
Diffstat (limited to 'scumm.h')
-rw-r--r--scumm.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/scumm.h b/scumm.h
index 9174cdd835..50435d194d 100644
--- a/scumm.h
+++ b/scumm.h
@@ -1217,14 +1217,14 @@ public:
int _screenLeft, _screenTop;
uint16 _enqueue_b,_enqueue_c,_enqueue_d,_enqueue_e;
int _enqueuePos;
- EnqueuedObject _enqueuedObjects[32];
+ BlastObject _enqueuedObjects[32];
void enqueueObject(int a, int b, int c, int d, int e, int f, int g, int h, int mode);
void clearEnqueue() { _enqueuePos = 0; }
- void drawEnqueuedObjects();
- void drawEnqueuedObject(EnqueuedObject *eo);
- void removeEnqueuedObjects();
- void removeEnqueuedObject(EnqueuedObject *eo);
+ void drawBlastObjects();
+ void drawBlastObject(BlastObject *eo);
+ void removeBlastObjects();
+ void removeBlastObject(BlastObject *eo);
int _drawObjectQueNr;
byte _drawObjectQue[200];
@@ -1444,7 +1444,7 @@ public:
void setStringVars(int i);
void unkMiscOp9();
- void o6_bompWindow();
+ void o6_setBlastObjectWindow();
void o6_pushByte();
void o6_pushWord();
void o6_pushByteVar();