aboutsummaryrefslogtreecommitdiff
path: root/engines/cryo/defs.h
diff options
context:
space:
mode:
authorStrangerke2017-01-18 23:05:38 +0100
committerEugene Sandulenko2017-01-25 22:42:24 +0100
commit3e07b86069b09e2afea44bf2b2b05ece637e2955 (patch)
tree9a6d7244b633240926e0baaa24c96b371b1a67f4 /engines/cryo/defs.h
parent49b9ffa6ef60d34c70cb3226d4029f115d64bc4e (diff)
downloadscummvm-rg350-3e07b86069b09e2afea44bf2b2b05ece637e2955.tar.gz
scummvm-rg350-3e07b86069b09e2afea44bf2b2b05ece637e2955.tar.bz2
scummvm-rg350-3e07b86069b09e2afea44bf2b2b05ece637e2955.zip
CRYO: Some more renaming
Diffstat (limited to 'engines/cryo/defs.h')
-rw-r--r--engines/cryo/defs.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/cryo/defs.h b/engines/cryo/defs.h
index 454b173a4f..870d54bb28 100644
--- a/engines/cryo/defs.h
+++ b/engines/cryo/defs.h
@@ -366,7 +366,7 @@ enum DialogType {
};
}
-struct dial_t {
+struct Dialog {
char _flags; // 0-3 - action index, 4 - highest bit of contidion index, rest is DialogFlags
char _condNumLow; // condition index low bits
char _textCondHiMask; // 0-1 text index hi bits, 2-5 - perso mask num, 6-7 condition index hi bits
@@ -379,7 +379,7 @@ struct tape_t {
int16 _party;
int16 _roomNum;
int16 _backgroundBankNum;
- dial_t *_dialog;
+ Dialog *_dialog;
};
struct Follower { // Characters on Mirror screen
@@ -660,11 +660,11 @@ struct global_t {
byte _var6D; //TODO: pad?
byte _labyrinthDirections;
byte _labyrinthRoom;
- dial_t *_dialogPtr;
+ Dialog *_dialogPtr;
tape_t *_tapePtr;
- dial_t *_nextDialogPtr;
- dial_t *_narratorDialogPtr;
- dial_t *_lastDialogPtr;
+ Dialog *_nextDialogPtr;
+ Dialog *_narratorDialogPtr;
+ Dialog *_lastDialogPtr;
Icon *_nextRoomIcon;
byte *_sentenceBufferPtr;
Room *_roomPtr;