Change visibility of end of file error

We want this to be visible at all times so ISO damage issues are more visible without enabling advanced logs. Conversely, we don't want this to show up as a big red error, since it is not necessarily a critical error as mentioned in li's comment.
This commit is contained in:
RedPanda4552 2021-03-19 19:09:14 -04:00 committed by refractionpcsx2
parent af98432881
commit 0af847bd29
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ void InputIsoFile::BeginRead2(uint lsn)
{
// While this usually indicates that the ISO is corrupted, some games do attempt
// to read past the end of the disc, so don't error here.
DevCon.Warning("isoFile error: Block index is past the end of file! (%u >= %u).", lsn, m_blocks);
Console.WriteLn("isoFile error: Block index is past the end of file! (%u >= %u).", lsn, m_blocks);
return;
}