aboutsummaryrefslogtreecommitdiff
path: root/engines/cryo/sound.h
diff options
context:
space:
mode:
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();
-};
-
}