aboutsummaryrefslogtreecommitdiff
path: root/engines/cryo/sound.cpp
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.cpp
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.cpp')
-rw-r--r--engines/cryo/sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cryo/sound.cpp b/engines/cryo/sound.cpp
index f4eec8cabb..f3b57de04a 100644
--- a/engines/cryo/sound.cpp
+++ b/engines/cryo/sound.cpp
@@ -112,7 +112,7 @@ void CSoundChannel::applyVolumeChange() {
/****************************************************************/
-SoundGroup::SoundGroup(CryoEngine *vm, int16 numSounds, int16 length, int16 sampleSize, float rate, int16 mode) : _vm(vm) {
+SoundGroup::SoundGroup(int16 numSounds, int16 length, int16 sampleSize, float rate, int16 mode) {
if (numSounds < kCryoMaxClSounds)
_numSounds = numSounds;
else