Remove redundant cast

This commit is contained in:
Dan Balasescu 2017-11-29 18:18:36 +09:00 committed by GitHub
parent 404e7d62ff
commit 7cbca37e2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ namespace osu.Game.Rulesets.Mania.Replays
public override bool IsImportant => MouseX > 0;
public ManiaReplayFrame(double time, int activeColumns)
: base(time, (float)activeColumns, null, ReplayButtonState.None)
: base(time, activeColumns, null, ReplayButtonState.None)
{
}
}