Skip to content

Commit

Permalink
Remove commented out debug message in hsRAMStream::Read
Browse files Browse the repository at this point in the history
Co-authored-by: Adam Johnson <AdamJohnso@gmail.com>
  • Loading branch information
dgelessus and Hoikas committed Jul 29, 2023
1 parent 9056429 commit 8b2f911
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Sources/Plasma/CoreLib/hsStream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,6 @@ bool hsRAMStream::AtEnd()
uint32_t hsRAMStream::Read(uint32_t byteCount, void * buffer)
{
if (fPosition + byteCount > fVector.size()) {
// hsStatusMessageF("Reading past end of hsRAMStream (read %u of %u requested bytes)", fVector.size() - fPosition, byteCount);
byteCount = fVector.size() - fPosition;
}

Expand Down

0 comments on commit 8b2f911

Please sign in to comment.