aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/smush/channel.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/scumm/smush/channel.h')
-rw-r--r--engines/scumm/smush/channel.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/scumm/smush/channel.h b/engines/scumm/smush/channel.h
index 9f3c4ad31f..633c87a8c4 100644
--- a/engines/scumm/smush/channel.h
+++ b/engines/scumm/smush/channel.h
@@ -87,12 +87,12 @@ public:
bool checkParameters(int32 index, int32 duration, int32 flags, int32 vol1, int32 vol2);
bool appendData(Chunk &b, int32 size);
int32 getAvailableSoundDataSize() const;
- void getSoundData(int16 *sound_buffer, int32 size);
- void getSoundData(int8 *sound_buffer, int32 size) { error("8bit request for SAUD channel should never happen"); };
+ void getSoundData(int16 *sound_buffer, int32 size) { error("16bit request for SAUD channel should never happen"); };
+ void getSoundData(int8 *sound_buffer, int32 size);
int32 getRate() { return 22050; }
bool getParameters(bool &stereo, bool &is_16bit, int32 &vol, int32 &pan) {
- stereo = true;
- is_16bit = true;
+ stereo = false;
+ is_16bit = false;
vol = _volume;
pan = _pan;
return true;