patterns: Fix bitfield member access

This commit is contained in:
WerWolv
2021-09-12 20:27:23 +02:00
parent ea2d181741
commit 1df64031c8
2 changed files with 5 additions and 11 deletions

View File

@@ -1382,7 +1382,7 @@ namespace hex::pl {
return false;
for (u64 i = 0; i < this->m_fields.size(); i++) {
if (this->m_fields[i] != otherBitfield.m_fields[i])
if (*this->m_fields[i] != *otherBitfield.m_fields[i])
return false;
}