From 0af847bd29c98acfc1e684c47fb94c9d3c463b88 Mon Sep 17 00:00:00 2001 From: RedPanda4552 Date: Fri, 19 Mar 2021 19:09:14 -0400 Subject: [PATCH] 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. --- pcsx2/CDVD/InputIsoFile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/CDVD/InputIsoFile.cpp b/pcsx2/CDVD/InputIsoFile.cpp index f6eadbdbd9..bf9ac065f2 100644 --- a/pcsx2/CDVD/InputIsoFile.cpp +++ b/pcsx2/CDVD/InputIsoFile.cpp @@ -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; }