ENGINES: Do not use MemoryReadStream where (Seekable)ReadStream suffices; avoid using 'using'

svn-id: r54323
This commit is contained in:
Max Horn 2010-11-18 16:38:03 +00:00
parent 4707b610fc
commit a008d14055
13 changed files with 25 additions and 27 deletions

View file

@ -71,7 +71,7 @@ int16 Resource::getHeight() const {
return _height;
}
Common::MemoryReadStream *Resource::stream() const {
Common::SeekableReadStream *Resource::stream() const {
return _stream;
}
@ -95,7 +95,7 @@ int32 TextItem::getSize() const {
return _size;
}
Common::MemoryReadStream *TextItem::stream() const {
Common::SeekableReadStream *TextItem::stream() const {
return _stream;
}