aboutsummaryrefslogtreecommitdiff
path: root/engines/lab
diff options
context:
space:
mode:
Diffstat (limited to 'engines/lab')
-rw-r--r--engines/lab/parsetypes.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/lab/parsetypes.h b/engines/lab/parsetypes.h
index a437df0534..681bbe70ae 100644
--- a/engines/lab/parsetypes.h
+++ b/engines/lab/parsetypes.h
@@ -117,7 +117,6 @@ struct ViewData {
CloseDataPtr closeUps;
};
-
struct Action {
int16 ActionType, Param1, Param2, Param3;
byte *Data; /* Message, or a pointer to array
@@ -125,11 +124,10 @@ struct Action {
Action *NextAction;
};
-
struct Rule {
int16 RuleType, Param1, Param2, *Condition;
- Action * ActionList;
+ Action *ActionList;
Rule *NextRule;
};