Fix equality comparison
This commit is contained in:
parent
efd616ffdf
commit
6bb4b7c83e
1 changed files with 1 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ std::string ModKey::toString() const
|
|||
|
||||
bool sfz::ModKey::operator==(const ModKey &other) const noexcept
|
||||
{
|
||||
return id_ == other.id_ && region_ && other.region_ &&
|
||||
return id_ == other.id_ && region_ == other.region_ &&
|
||||
parameters() == other.parameters();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue