CDVD: Fix block index past EoF error message

This commit is contained in:
TheTechnician27 2025-08-31 23:24:44 -05:00 committed by lightningterror
parent 21876ff590
commit 6d7deb57a0
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,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.
ERROR_LOG("isoFile error: Block index is past the end of file! (%u >= %u).", lsn, m_blocks);
ERROR_LOG("isoFile error: Block index is past the end of file! ({} >= {}).", lsn, m_blocks);
return;
}