aboutsummaryrefslogtreecommitdiff
path: root/engines/lab/parsetypes.h
diff options
context:
space:
mode:
authorFilippos Karapetis2015-10-12 13:53:00 +0300
committerWillem Jan Palenstijn2015-12-23 21:33:40 +0100
commit93b2e413fd8085a1985519429c369282c99c941e (patch)
tree6048254d1aa4a12f2704b9ffa2409f7914fda161 /engines/lab/parsetypes.h
parent9676165436e1e3e7ee4db16c2cb905e0b2aeb1ff (diff)
downloadscummvm-rg350-93b2e413fd8085a1985519429c369282c99c941e.tar.gz
scummvm-rg350-93b2e413fd8085a1985519429c369282c99c941e.tar.bz2
scummvm-rg350-93b2e413fd8085a1985519429c369282c99c941e.zip
LAB: Change the scene rule list to use a Common::List
Diffstat (limited to 'engines/lab/parsetypes.h')
-rw-r--r--engines/lab/parsetypes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/lab/parsetypes.h b/engines/lab/parsetypes.h
index 0f9ec50315..f185c11b63 100644
--- a/engines/lab/parsetypes.h
+++ b/engines/lab/parsetypes.h
@@ -138,7 +138,7 @@ struct Rule {
Rule *NextRule;
};
-typedef Rule *RulePtr;
+typedef Common::List<Rule *> RuleList;
struct RoomData {
uint16 NorthDoor, SouthDoor, EastDoor, WestDoor;
@@ -146,7 +146,7 @@ struct RoomData {
byte WipeType;
ViewDataPtr NorthView, SouthView, EastView, WestView;
- RulePtr RuleList;
+ RuleList *rules;
char *RoomMsg;
};