diff options
author | Strangerke | 2015-12-09 20:04:32 +0100 |
---|---|---|
committer | Willem Jan Palenstijn | 2015-12-23 21:33:59 +0100 |
commit | b586f76f94a33627a2a578539001860a7ff62297 (patch) | |
tree | 886ea1027b3206fb39e1416678570acb5bdb765c | |
parent | 8e88d3102541683595865b0c9bac59a854c6cdba (diff) | |
download | scummvm-rg350-b586f76f94a33627a2a578539001860a7ff62297.tar.gz scummvm-rg350-b586f76f94a33627a2a578539001860a7ff62297.tar.bz2 scummvm-rg350-b586f76f94a33627a2a578539001860a7ff62297.zip |
LAB: Review struct definitions in processroom
-rw-r--r-- | engines/lab/processroom.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/lab/processroom.h b/engines/lab/processroom.h index ff594dadc7..97c7cdce4f 100644 --- a/engines/lab/processroom.h +++ b/engines/lab/processroom.h @@ -91,7 +91,7 @@ namespace Lab { #pragma pack(push, 1) #endif -typedef struct CloseData { +struct CloseData { uint16 _x1, _y1, _x2, _y2; int16 _closeUpType; // if > 0, an object. If < 0, an item uint16 _depth; // Level of the closeup. @@ -99,12 +99,12 @@ typedef struct CloseData { char *_message; CloseData *_nextCloseUp; CloseData *_subCloseUps; -} CloseData; +}; struct ViewData { int16 *_condition; char *_graphicName; - struct ViewData *_nextCondition; + ViewData *_nextCondition; CloseDataPtr _closeUps; }; |