diff options
-rw-r--r-- | engines/cge2/fileio.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cge2/fileio.cpp b/engines/cge2/fileio.cpp index ea218647f9..6f8009716b 100644 --- a/engines/cge2/fileio.cpp +++ b/engines/cge2/fileio.cpp @@ -231,7 +231,7 @@ uint32 EncryptedStream::readUint32LE() { } bool EncryptedStream::err() { - return (_error & _readStream->err()); + return (_error || _readStream->err()); } bool EncryptedStream::eos() { |