aboutsummaryrefslogtreecommitdiff
path: root/engines/adl/adl_v2.h
diff options
context:
space:
mode:
authorWalter van Niftrik2016-08-28 20:54:06 +0200
committerWalter van Niftrik2016-08-28 21:01:12 +0200
commita199672540388ad2017309be274f0e96993d903c (patch)
tree49a8d58f0136030cd716c00c54e08f2f9267a370 /engines/adl/adl_v2.h
parent1cfc4832bbc7898c5b7018fe779b2f4bb629f222 (diff)
downloadscummvm-rg350-a199672540388ad2017309be274f0e96993d903c.tar.gz
scummvm-rg350-a199672540388ad2017309be274f0e96993d903c.tar.bz2
scummvm-rg350-a199672540388ad2017309be274f0e96993d903c.zip
ADL: Change some SeekableReadStream to ReadStream
Diffstat (limited to 'engines/adl/adl_v2.h')
-rw-r--r--engines/adl/adl_v2.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/adl/adl_v2.h b/engines/adl/adl_v2.h
index 85c7544563..8f36b5cdb8 100644
--- a/engines/adl/adl_v2.h
+++ b/engines/adl/adl_v2.h
@@ -53,11 +53,11 @@ protected:
virtual DataBlockPtr readDataBlockPtr(Common::ReadStream &f) const;
virtual void adjustDataBlockPtr(byte &track, byte &sector, byte &offset, byte &size) const { }
- void loadItems(Common::SeekableReadStream &stream);
- void loadRooms(Common::SeekableReadStream &stream, byte count);
- void loadMessages(Common::SeekableReadStream &stream, byte count);
- void loadPictures(Common::SeekableReadStream &stream);
- void loadItemPictures(Common::SeekableReadStream &stream, byte count);
+ void loadItems(Common::ReadStream &stream);
+ void loadRooms(Common::ReadStream &stream, byte count);
+ void loadMessages(Common::ReadStream &stream, byte count);
+ void loadPictures(Common::ReadStream &stream);
+ void loadItemPictures(Common::ReadStream &stream, byte count);
void checkTextOverflow(char c);