diff options
| author | JosJuice <josjuice@gmail.com> | 2023-11-05 09:24:49 +0100 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2023-11-05 09:24:49 +0100 |
| commit | 9c53c110f8919733a9b00c83f4fb160c8c2925d2 (patch) | |
| tree | f15dee61892b0191c6b8e8dffd6d838e586b315c /Source/Core/DiscIO/DirectoryBlob.cpp | |
| parent | 6b2d801ed7a6998b2d481af1f8c9dab11595fe6b (diff) | |
DiscIO: Remove unintentional use of comma operator
Diffstat (limited to 'Source/Core/DiscIO/DirectoryBlob.cpp')
| -rw-r--r-- | Source/Core/DiscIO/DirectoryBlob.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/Core/DiscIO/DirectoryBlob.cpp b/Source/Core/DiscIO/DirectoryBlob.cpp index 1970d49b44..7cd7e12def 100644 --- a/Source/Core/DiscIO/DirectoryBlob.cpp +++ b/Source/Core/DiscIO/DirectoryBlob.cpp @@ -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(); } |
