aboutsummaryrefslogtreecommitdiff
path: root/engines/cryo/cryolib.h
diff options
context:
space:
mode:
authorStrangerke2016-10-04 21:40:06 +0200
committerEugene Sandulenko2017-01-25 22:41:57 +0100
commited4167832cdeb67ee21318e941f26bc495ce833b (patch)
tree1de09d08a5043096fde5d5b724477a9075c4ada4 /engines/cryo/cryolib.h
parent1e430a26f5057408f0b5ada9621e40a42325e50b (diff)
downloadscummvm-rg350-ed4167832cdeb67ee21318e941f26bc495ce833b.tar.gz
scummvm-rg350-ed4167832cdeb67ee21318e941f26bc495ce833b.tar.bz2
scummvm-rg350-ed4167832cdeb67ee21318e941f26bc495ce833b.zip
CRYO: Some renaming in cryolib
Diffstat (limited to 'engines/cryo/cryolib.h')
-rw-r--r--engines/cryo/cryolib.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/engines/cryo/cryolib.h b/engines/cryo/cryolib.h
index 58e6afb323..42df4f9e32 100644
--- a/engines/cryo/cryolib.h
+++ b/engines/cryo/cryolib.h
@@ -162,32 +162,32 @@ struct sound_t {
int16 _loopTimes;
bool _reversed;
int16 ff_32;
- int16 volume;
+ int16 _volume;
};
typedef struct sound_t sound_t;
-#define CL_MAX_SOUNDS 64
+#define kCryoMaxClSounds 64
struct soundgroup_t {
- sound_t *sound[CL_MAX_SOUNDS];
- int16 numSounds;
- int16 soundIndex;
- int16 playIndex;
+ sound_t *_sound[kCryoMaxClSounds];
+ int16 _numSounds;
+ int16 _soundIndex;
+ int16 _playIndex;
int16 ff_106;
};
typedef struct soundgroup_t soundgroup_t;
-#define CL_MAX_CH_SOUNDS 10
+#define kCryoMaxChSounds 10
struct soundchannel_t {
Audio::SoundHandle ch;
int xx;
- int16 volumeLeft;
- int16 volumeRight;
- int16 numSounds;
+ int16 _volumeLeft;
+ int16 _volumeRight;
+ int16 _numSounds;
- sound_t *sounds[CL_MAX_CH_SOUNDS];
+ sound_t *_sounds[kCryoMaxChSounds];
int16 ff_536;
};