aboutsummaryrefslogtreecommitdiff
path: root/audio/decoders
diff options
context:
space:
mode:
authorMax Horn2011-04-13 12:29:17 +0200
committerMax Horn2011-04-13 12:48:57 +0200
commite0a30e00399366f0a7130071c961cb368444d1b3 (patch)
tree4099d79e05a13f46b3976e010c7291acb21d3295 /audio/decoders
parent7607e351cc7b58efb90e14839bc4cd4af7e6371e (diff)
downloadscummvm-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/decoders')
-rw-r--r--audio/decoders/adpcm.h4
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 {