diff options
| author | Max Horn | 2009-05-19 11:42:14 +0000 |
|---|---|---|
| committer | Max Horn | 2009-05-19 11:42:14 +0000 |
| commit | 65b5d318140c7ff846455a37ec7ae63e635bcdcf (patch) | |
| tree | 77f278ceec1e54e097056df0b2820e414eed8290 /engines/cine | |
| parent | 4d59f620f9fdc1dfd7ccd6c7d30a0b5de480eb20 (diff) | |
| download | scummvm-rg350-65b5d318140c7ff846455a37ec7ae63e635bcdcf.tar.gz scummvm-rg350-65b5d318140c7ff846455a37ec7ae63e635bcdcf.tar.bz2 scummvm-rg350-65b5d318140c7ff846455a37ec7ae63e635bcdcf.zip | |
COMMON: Removed Stream::ioFailed() and clearIOFailed(), as they are deprecated; however, retained ioFailed in SeekableReadStream and File for now (so for now this mainly affects WriteStream subclasses)
svn-id: r40725
Diffstat (limited to 'engines/cine')
| -rw-r--r-- | engines/cine/saveload.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cine/saveload.cpp b/engines/cine/saveload.cpp index 2c6ff4dcae..ea0ff0079b 100644 --- a/engines/cine/saveload.cpp +++ b/engines/cine/saveload.cpp @@ -42,7 +42,7 @@ bool writeChunkHeader(Common::OutSaveFile &out, const ChunkHeader &header) { out.writeUint32BE(header.id); out.writeUint32BE(header.version); out.writeUint32BE(header.size); - return !out.ioFailed(); + return !out.err(); } bool loadChunkHeader(Common::SeekableReadStream &in, ChunkHeader &header) { |
