aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/sound.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/pink/sound.h')
-rw-r--r--engines/pink/sound.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/pink/sound.h b/engines/pink/sound.h
index 7b60745667..fdd5e23ce2 100644
--- a/engines/pink/sound.h
+++ b/engines/pink/sound.h
@@ -28,8 +28,6 @@
namespace Pink {
-enum class AudioFormat{kWAV, kVOX};
-
/*TODO
from disasm foreground 100 %, background 80 %
dont know how to properly do it
@@ -38,10 +36,10 @@ enum class AudioFormat{kWAV, kVOX};
class Sound {
public:
- Sound(Audio::Mixer *mixer, AudioFormat format, Common::SeekableReadStream *stream);
+ Sound(Audio::Mixer *mixer, Common::SeekableReadStream *stream);
~Sound();
- bool load(AudioFormat format, Common::SeekableReadStream *stream);
+ bool load(Common::SeekableReadStream *stream);
void play(Audio::Mixer::SoundType type, int volume, bool isLoop);
bool isLoaded();