mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
af98432881
commit
0af847bd29
|
@ -62,7 +62,7 @@ void InputIsoFile::BeginRead2(uint lsn)
|
||||||
{
|
{
|
||||||
// While this usually indicates that the ISO is corrupted, some games do attempt
|
// 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.
|
// 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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue