DirectoryBlob: Remove redundant assert

DiscContent::Read contains an equivalent assertion.
This commit is contained in:
JosJuice 2017-08-01 19:35:01 +02:00
parent 6b0a60d2ee
commit 74ada98e84
1 changed files with 0 additions and 1 deletions

View File

@ -156,7 +156,6 @@ bool DiscContentContainer::Read(u64 offset, u64 length, u8* buffer) const
while (it != m_contents.end() && length > 0)
{
_dbg_assert_(DISCIO, it->GetOffset() <= offset);
if (!it->Read(&offset, &length, &buffer))
return false;