DirectoryBlob: Use DISCIO instead of DVDINTERFACE for logging

This commit is contained in:
JosJuice 2017-06-08 18:56:09 +02:00
parent 3f9eec9ae4
commit 02610d4b28
1 changed files with 2 additions and 2 deletions

View File

@ -199,7 +199,7 @@ bool DirectoryBlobReader::ReadInternal(u64 offset, u64 length, u8* buffer,
while (it != contents.end() && length > 0)
{
_dbg_assert_(DVDINTERFACE, it->GetOffset() <= offset);
_dbg_assert_(DISCIO, it->GetOffset() <= offset);
if (!it->Read(&offset, &length, &buffer))
return false;
@ -207,7 +207,7 @@ bool DirectoryBlobReader::ReadInternal(u64 offset, u64 length, u8* buffer,
if (it != contents.end())
{
_dbg_assert_(DVDINTERFACE, it->GetOffset() >= offset);
_dbg_assert_(DISCIO, it->GetOffset() >= offset);
PadToAddress(it->GetOffset(), &offset, &length, &buffer);
}
}