diff options
author | Max Horn | 2010-11-19 17:03:07 +0000 |
---|---|---|
committer | Max Horn | 2010-11-19 17:03:07 +0000 |
commit | 2180b2d6b534d3786f89d02fe508c60c68b7ff89 (patch) | |
tree | ac7af0e5f5049537f4c81c401d5685bebbb47068 /graphics | |
parent | 111384473bb65741f7f2b945e1c00e6aeccc805c (diff) | |
download | scummvm-rg350-2180b2d6b534d3786f89d02fe508c60c68b7ff89.tar.gz scummvm-rg350-2180b2d6b534d3786f89d02fe508c60c68b7ff89.tar.bz2 scummvm-rg350-2180b2d6b534d3786f89d02fe508c60c68b7ff89.zip |
COMMON: Split common/stream.h into several headers
svn-id: r54385
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/pict.cpp | 2 | ||||
-rw-r--r-- | graphics/video/coktel_decoder.cpp | 2 | ||||
-rw-r--r-- | graphics/video/qt_decoder.cpp | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/graphics/pict.cpp b/graphics/pict.cpp index ebf643439b..8525897d4c 100644 --- a/graphics/pict.cpp +++ b/graphics/pict.cpp @@ -23,7 +23,7 @@ * */ -#include "common/stream.h" +#include "common/substream.h" #include "graphics/conversion.h" #include "graphics/jpeg.h" diff --git a/graphics/video/coktel_decoder.cpp b/graphics/video/coktel_decoder.cpp index 0247630579..394e96d7ac 100644 --- a/graphics/video/coktel_decoder.cpp +++ b/graphics/video/coktel_decoder.cpp @@ -31,7 +31,7 @@ #include "sound/audiostream.h" #include "sound/decoders/raw.h" -#include "common/stream.h" +#include "common/memstream.h" static const uint32 kVideoCodecIndeo3 = MKID_BE('iv32'); diff --git a/graphics/video/qt_decoder.cpp b/graphics/video/qt_decoder.cpp index f4ecf551d6..879e4d076e 100644 --- a/graphics/video/qt_decoder.cpp +++ b/graphics/video/qt_decoder.cpp @@ -36,6 +36,7 @@ #include "common/debug.h" #include "common/endian.h" #include "common/macresman.h" +#include "common/memstream.h" #include "common/util.h" #include "common/zlib.h" |