aboutsummaryrefslogtreecommitdiff
path: root/engines/cryo/sound.h
diff options
context:
space:
mode:
authorStrangerke2017-01-29 23:29:01 +0100
committerStrangerke2017-01-29 23:29:01 +0100
commitfad3f324a81e4baf752cd388cda24e2608838945 (patch)
treeea5c788b5d7eeaf57da2a3cf651b1a233a795e39 /engines/cryo/sound.h
parent1e77941a3573285a262cc544ce8028ea93774d4f (diff)
downloadscummvm-rg350-fad3f324a81e4baf752cd388cda24e2608838945.tar.gz
scummvm-rg350-fad3f324a81e4baf752cd388cda24e2608838945.tar.bz2
scummvm-rg350-fad3f324a81e4baf752cd388cda24e2608838945.zip
CRYO: Remove a couple of unused class members
Diffstat (limited to 'engines/cryo/sound.h')
-rw-r--r--engines/cryo/sound.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/cryo/sound.h b/engines/cryo/sound.h
index b05c08ea71..c6fee3c45f 100644
--- a/engines/cryo/sound.h
+++ b/engines/cryo/sound.h
@@ -71,15 +71,13 @@ public:
class SoundGroup {
private:
- CryoEngine *_vm;
-
Sound *_sounds[kCryoMaxClSounds];
int16 _numSounds;
int16 _soundIndex;
int16 _playIndex;
public:
- SoundGroup(CryoEngine *vm, int16 numSounds, int16 length, int16 sampleSize, float rate, int16 mode);
+ SoundGroup(int16 numSounds, int16 length, int16 sampleSize, float rate, int16 mode);
~SoundGroup();
bool assignDatas(void *buffer, int length, bool isSigned);