mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-02 11:02:28 +02:00
DirectoryBlob: Use DISCIO instead of DVDINTERFACE for logging
This commit is contained in:
parent
3f9eec9ae4
commit
02610d4b28
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user