diff options
author | Max Horn | 2005-04-22 17:40:09 +0000 |
---|---|---|
committer | Max Horn | 2005-04-22 17:40:09 +0000 |
commit | 969ef3dac93a21d981e4cc2a8c81c0f03a834417 (patch) | |
tree | 9240363f92815c7e92e53b0b42e8d553d4a478c3 /scumm | |
parent | ca33ec4563e05b0940e44de78e0f52bbbf6bfe41 (diff) | |
download | scummvm-rg350-969ef3dac93a21d981e4cc2a8c81c0f03a834417.tar.gz scummvm-rg350-969ef3dac93a21d981e4cc2a8c81c0f03a834417.tar.bz2 scummvm-rg350-969ef3dac93a21d981e4cc2a8c81c0f03a834417.zip |
* Added new virtual base class 'Stream', ReadStream and
WriteStream are now subclasses of it.
* Added new methods eos(), ioFailed(), clearIOFailed() to
all streams. This allows better error checking.
* SaveFile classes take advantage of these new standard
stream APIS
* Removed File::gets()
* Added SeekableReadStream::readLine() (replaces File::gets)
* Added WriteStream::writeString, for convenience
svn-id: r17752
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/util.h b/scumm/util.h index 48821755b1..4bef2ebe81 100644 --- a/scumm/util.h +++ b/scumm/util.h @@ -100,7 +100,7 @@ public: bool openSubFile(const char *filename); void close(); - bool eof() { return _stream->eof(); } + bool eof() { return _stream->eos(); } uint32 pos() { return _stream->pos(); } uint32 size() { return _stream->size(); } void seek(int32 offs, int whence = SEEK_SET) { _stream->seek(offs, whence); } |