aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/smush/smush_player.h
diff options
context:
space:
mode:
authorOri Avtalion2016-05-21 13:55:38 +0300
committerOri Avtalion2016-05-21 13:55:38 +0300
commit3ad6af92f20b98b3c7a5045fe8e55045cff9caf1 (patch)
tree5c9d1d47dbeff6a9ec20d84c925da19b199c917c /engines/scumm/smush/smush_player.h
parent10cbeb1ac6be299c06297c0f2c69e7cc8a5cb7cc (diff)
downloadscummvm-rg350-3ad6af92f20b98b3c7a5045fe8e55045cff9caf1.tar.gz
scummvm-rg350-3ad6af92f20b98b3c7a5045fe8e55045cff9caf1.tar.bz2
scummvm-rg350-3ad6af92f20b98b3c7a5045fe8e55045cff9caf1.zip
SCUMM: Reduce audio header dependencies
Diffstat (limited to 'engines/scumm/smush/smush_player.h')
-rw-r--r--engines/scumm/smush/smush_player.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/scumm/smush/smush_player.h b/engines/scumm/smush/smush_player.h
index b0d6e6a9f0..f1dffef7c7 100644
--- a/engines/scumm/smush/smush_player.h
+++ b/engines/scumm/smush/smush_player.h
@@ -24,9 +24,9 @@
#define SCUMM_SMUSH_PLAYER_H
#include "common/util.h"
-#include "scumm/sound.h"
namespace Audio {
+class SoundHandle;
class QueuingAudioStream;
}
@@ -65,10 +65,10 @@ private:
bool _skipNext;
uint32 _frame;
- Audio::SoundHandle _IACTchannel;
+ Audio::SoundHandle *_IACTchannel;
Audio::QueuingAudioStream *_IACTstream;
- Audio::SoundHandle _compressedFileSoundHandle;
+ Audio::SoundHandle *_compressedFileSoundHandle;
bool _compressedFileMode;
byte _IACToutput[4096];
int32 _IACTpos;