diff options
author | Filippos Karapetis | 2015-10-14 01:18:26 +0300 |
---|---|---|
committer | Willem Jan Palenstijn | 2015-12-23 21:33:40 +0100 |
commit | 95d91d81e53955a47b7e0edd293be135331ca6f8 (patch) | |
tree | 652fd29087783c3824ecd09e334a2f41d3bdc0dd /engines/lab | |
parent | 12f4a71c7335b99988839a80ed85c2f59c8f2c48 (diff) | |
download | scummvm-rg350-95d91d81e53955a47b7e0edd293be135331ca6f8.tar.gz scummvm-rg350-95d91d81e53955a47b7e0edd293be135331ca6f8.tar.bz2 scummvm-rg350-95d91d81e53955a47b7e0edd293be135331ca6f8.zip |
LAB: Fix whitespace
Diffstat (limited to 'engines/lab')
-rw-r--r-- | engines/lab/parsetypes.h | 4 |
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; }; |