DiscIO: Clear error status when reading file

This commit is contained in:
JosJuice
2014-12-14 13:16:21 +01:00
parent d02eb3ca59
commit 467b3e6baf
3 changed files with 17 additions and 3 deletions

View File

@ -66,7 +66,10 @@ bool CISOFileReader::Read(u64 offset, u64 nbytes, u8* out_ptr)
u64 const file_off = CISO_HEADER_SIZE + m_ciso_map[block] * (u64)m_block_size + data_offset;
if (!(m_file.Seek(file_off, SEEK_SET) && m_file.ReadArray(out_ptr, bytes_to_read)))
{
m_file.Clear();
return false;
}
}
else
{