Merge pull request #12275 from JosJuice/directoryblob-comma

DiscIO: Remove unintentional use of comma operator
This commit is contained in:
JosJuice 2023-11-05 14:40:25 +01:00 committed by GitHub
commit 9a342af857
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -437,8 +437,7 @@ DirectoryBlobReader::DirectoryBlobReader(
std::vector<u8> header_bin(WII_NONPARTITION_DISCHEADER_SIZE);
if (!m_wrapped_volume->Read(WII_NONPARTITION_DISCHEADER_ADDRESS,
WII_NONPARTITION_DISCHEADER_SIZE, header_bin.data(),
PARTITION_NONE),
m_wrapped_volume.get())
PARTITION_NONE))
{
header_bin.clear();
}