1
0

1.8: Fixed ReadItem()

This commit is contained in:
Howaner
2014-09-12 02:42:04 +02:00
parent eb19eff5ac
commit 34bcd3dd58
2 changed files with 40 additions and 20 deletions

View File

@@ -267,7 +267,7 @@ size_t cByteBuffer::GetReadableSpace(void) const
}
// Single readable space partition:
ASSERT(m_WritePos >= m_ReadPos);
return m_WritePos - m_ReadPos ;
return m_WritePos - m_ReadPos;
}