CGE2: Fix EncryptedStream::err().

This commit is contained in:
uruk 2014-08-11 16:10:14 +02:00
parent 235e3d396e
commit 3e3430ed5d

View File

@ -231,7 +231,7 @@ uint32 EncryptedStream::readUint32LE() {
}
bool EncryptedStream::err() {
return (_error & _readStream->err());
return (_error || _readStream->err());
}
bool EncryptedStream::eos() {