1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 11:35:35 +08:00

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

View File

@ -204,8 +204,8 @@ namespace osu.Game.Beatmaps.Formats
}
public override bool EquivalentTo(ControlPoint other) =>
base.EquivalentTo(other)
&& CustomSampleBank == ((LegacySampleControlPoint)other).CustomSampleBank;
base.EquivalentTo(other) && other is LegacySampleControlPoint otherTyped &&
CustomSampleBank == otherTyped.CustomSampleBank;
}
}
}