aboutsummaryrefslogtreecommitdiff
path: root/engines/cryo/sound.h
diff options
context:
space:
mode:
authorStrangerke2017-02-02 00:49:11 +0100
committerStrangerke2017-02-02 00:49:11 +0100
commit472f8b2b0056156d135ed53a6978d624ee0ffbc0 (patch)
treec799b6e844ca1254852cb530b4b91faf6667a29c /engines/cryo/sound.h
parentc8af2442b61ed564fe5a016c6337308cab436878 (diff)
downloadscummvm-rg350-472f8b2b0056156d135ed53a6978d624ee0ffbc0.tar.gz
scummvm-rg350-472f8b2b0056156d135ed53a6978d624ee0ffbc0.tar.bz2
scummvm-rg350-472f8b2b0056156d135ed53a6978d624ee0ffbc0.zip
CRYO: Remove SoundGroup (no longer used)
Diffstat (limited to 'engines/cryo/sound.h')
-rw-r--r--engines/cryo/sound.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/engines/cryo/sound.h b/engines/cryo/sound.h
index c6fee3c45f..72232cc4f1 100644
--- a/engines/cryo/sound.h
+++ b/engines/cryo/sound.h
@@ -67,23 +67,4 @@ public:
void setVolumeRight(unsigned int volume);
};
-#define kCryoMaxClSounds 64
-
-class SoundGroup {
-private:
- Sound *_sounds[kCryoMaxClSounds];
- int16 _numSounds;
- int16 _soundIndex;
- int16 _playIndex;
-
-public:
- SoundGroup(int16 numSounds, int16 length, int16 sampleSize, float rate, int16 mode);
- ~SoundGroup();
-
- bool assignDatas(void *buffer, int length, bool isSigned);
- void playNextSample(SoundChannel *ch);
- bool setDatas(void *data, int length, bool isSigned);
- void *getNextBuffer();
-};
-
}