aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/objects.h
diff options
context:
space:
mode:
authorNicola Mettifogo2008-08-26 12:15:11 +0000
committerNicola Mettifogo2008-08-26 12:15:11 +0000
commita403372ae160e83bf1f8f48cfd5b0bb0109d9a67 (patch)
treea3c8b04bc1a136e7078423769c4a204f7c5c0072 /engines/parallaction/objects.h
parent8669e6dcf4a67f5e29ebe154072d02884bd86d4d (diff)
downloadscummvm-rg350-a403372ae160e83bf1f8f48cfd5b0bb0109d9a67.tar.gz
scummvm-rg350-a403372ae160e83bf1f8f48cfd5b0bb0109d9a67.tar.bz2
scummvm-rg350-a403372ae160e83bf1f8f48cfd5b0bb0109d9a67.zip
Cleanup.
svn-id: r34185
Diffstat (limited to 'engines/parallaction/objects.h')
-rw-r--r--engines/parallaction/objects.h17
1 files changed, 4 insertions, 13 deletions
diff --git a/engines/parallaction/objects.h b/engines/parallaction/objects.h
index f66e602f68..eee69383b6 100644
--- a/engines/parallaction/objects.h
+++ b/engines/parallaction/objects.h
@@ -192,23 +192,19 @@ struct Dialogue {
~Dialogue();
};
-struct GetData { // size = 24
+struct GetData {
uint32 _icon;
GfxObj *gfxobj;
- byte *_backup;
- uint16 field_14; // unused
- uint16 field_16; // unused
MaskBuffer _mask[2];
bool hasMask;
GetData() {
_icon = 0;
- _backup = NULL;
gfxobj = NULL;
hasMask = false;
}
};
-struct SpeakData { // size = 36
+struct SpeakData {
char _name[32];
Dialogue *_dialogue;
@@ -217,30 +213,25 @@ struct SpeakData { // size = 36
_dialogue = NULL;
}
};
-struct ExamineData { // size = 28
+struct ExamineData {
GfxObj *_cnv;
- uint16 _opBase; // unused
- uint16 field_12; // unused
char* _description;
char* _filename;
ExamineData() {
- _opBase = 0;
_description = NULL;
_filename = NULL;
_cnv = NULL;
}
};
-struct DoorData { // size = 28
+struct DoorData {
char* _location;
GfxObj *gfxobj;
- byte* _background;
Common::Point _startPos;
uint16 _startFrame;
DoorData() {
_location = NULL;
- _background = NULL;
_startFrame = 0;
gfxobj = NULL;
}