diff --git a/Sources/Plasma/CoreLib/hsStream.cpp b/Sources/Plasma/CoreLib/hsStream.cpp index 32cd5317..8593ca4b 100644 --- a/Sources/Plasma/CoreLib/hsStream.cpp +++ b/Sources/Plasma/CoreLib/hsStream.cpp @@ -1054,10 +1054,7 @@ hsBool hsRAMStream::AtEnd() UInt32 hsRAMStream::Read(UInt32 byteCount, void * buffer) { if (fBytesRead + byteCount > fAppender.Count() * fAppender.ElemSize()) - { - hsThrow("Attempting to read past end of stream"); byteCount = (fAppender.Count() * fAppender.ElemSize()) - fBytesRead; - } fBytesRead += byteCount; fPosition += byteCount;