Avoid potential mis-cast in comparison

This commit is contained in:
Dean Herbert 2019-10-27 11:35:45 +09:00
parent e39016bf01
commit 814b520e5e
1 changed files with 2 additions and 2 deletions

View File

@ -204,8 +204,8 @@ public override HitSampleInfo ApplyTo(HitSampleInfo hitSampleInfo)
}
public override bool EquivalentTo(ControlPoint other) =>
base.EquivalentTo(other)
&& CustomSampleBank == ((LegacySampleControlPoint)other).CustomSampleBank;
base.EquivalentTo(other) && other is LegacySampleControlPoint otherTyped &&
CustomSampleBank == otherTyped.CustomSampleBank;
}
}
}