diff options
author | Max Horn | 2011-04-13 12:29:17 +0200 |
---|---|---|
committer | Max Horn | 2011-04-13 12:48:57 +0200 |
commit | e0a30e00399366f0a7130071c961cb368444d1b3 (patch) | |
tree | 4099d79e05a13f46b3976e010c7291acb21d3295 /audio | |
parent | 7607e351cc7b58efb90e14839bc4cd4af7e6371e (diff) | |
download | scummvm-rg350-e0a30e00399366f0a7130071c961cb368444d1b3.tar.gz scummvm-rg350-e0a30e00399366f0a7130071c961cb368444d1b3.tar.bz2 scummvm-rg350-e0a30e00399366f0a7130071c961cb368444d1b3.zip |
AUDIO: Stop adpcm.h from including common/stream.h
Diffstat (limited to 'audio')
-rw-r--r-- | audio/decoders/adpcm.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/audio/decoders/adpcm.h b/audio/decoders/adpcm.h index a41da3ae77..06cda69225 100644 --- a/audio/decoders/adpcm.h +++ b/audio/decoders/adpcm.h @@ -38,7 +38,9 @@ #define SOUND_ADPCM_H #include "common/scummsys.h" -#include "common/stream.h" +#include "common/types.h" + +namespace Common { class SeekableReadStream; } namespace Audio { |