aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/zone.h
diff options
context:
space:
mode:
authorNicola Mettifogo2007-03-17 20:51:13 +0000
committerNicola Mettifogo2007-03-17 20:51:13 +0000
commit74f7a908866a316ae559012f2229b77e51b6eee0 (patch)
tree252d5aeaa6a74d73a37581c3d7238064e54af679 /engines/parallaction/zone.h
parentb80dab6c73819edbe2a21903e313b565630a87a3 (diff)
downloadscummvm-rg350-74f7a908866a316ae559012f2229b77e51b6eee0.tar.gz
scummvm-rg350-74f7a908866a316ae559012f2229b77e51b6eee0.tar.bz2
scummvm-rg350-74f7a908866a316ae559012f2229b77e51b6eee0.zip
renamed structures to be more general
svn-id: r26184
Diffstat (limited to 'engines/parallaction/zone.h')
-rw-r--r--engines/parallaction/zone.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/parallaction/zone.h b/engines/parallaction/zone.h
index ef878eb41e..956b0e4bb5 100644
--- a/engines/parallaction/zone.h
+++ b/engines/parallaction/zone.h
@@ -109,7 +109,7 @@ struct MergeData { // size = 12
uint32 _obj3;
};
-struct ZoneTypeData {
+struct TypeData {
GetData *get;
SpeakData *speak;
ExamineData *examine;
@@ -118,7 +118,7 @@ struct ZoneTypeData {
MergeData *merge;
};
-struct ZoneLabel {
+struct Label {
char* _text;
StaticCnv _cnv;
};
@@ -134,10 +134,10 @@ struct Zone : public Node {
uint32 _type;
uint32 _flags;
- ZoneLabel _label;
+ Label _label;
uint16 field_2C; // unused
uint16 field_2E; // unused
- ZoneTypeData u;
+ TypeData u;
Command *_commands;
Point _moveTo;