CDVD: Fixed typo opening gzip files

Fixes #5162
This commit is contained in:
refractionpcsx2 2021-12-15 09:38:04 +00:00
parent 37ccd81985
commit ab816543c8
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ bool GzippedFileReader::OkIndex()
// Try to read index from disk
const std::string indexfile(iso2indexname(m_filename));
if (indexfile.empty() == 0)
if (indexfile.empty())
return false; // iso2indexname(...) will print errors if it can't apply the template
if (FileSystem::FileExists(indexfile.c_str()) && (m_pIndex = ReadIndexFromFile(indexfile.c_str())))