mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 05:32:54 +08:00
CodeFactor fixes
This commit is contained in:
parent
d742092d9d
commit
6ea6130fee
@ -68,7 +68,6 @@ namespace osu.Game.Rulesets.Osu.Replays
|
|||||||
AddFrameToReplay(new ReplayFrame(Beatmap.HitObjects[0].StartTime - 1500, 256, 500, ReplayButtonState.None));
|
AddFrameToReplay(new ReplayFrame(Beatmap.HitObjects[0].StartTime - 1500, 256, 500, ReplayButtonState.None));
|
||||||
AddFrameToReplay(new ReplayFrame(Beatmap.HitObjects[0].StartTime - 1000, 256, 192, ReplayButtonState.None));
|
AddFrameToReplay(new ReplayFrame(Beatmap.HitObjects[0].StartTime - 1000, 256, 192, ReplayButtonState.None));
|
||||||
|
|
||||||
|
|
||||||
for (int i = 0; i < Beatmap.HitObjects.Count; i++)
|
for (int i = 0; i < Beatmap.HitObjects.Count; i++)
|
||||||
{
|
{
|
||||||
OsuHitObject h = Beatmap.HitObjects[i];
|
OsuHitObject h = Beatmap.HitObjects[i];
|
||||||
@ -130,7 +129,6 @@ namespace osu.Game.Rulesets.Osu.Replays
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Do some nice easing for cursor movements
|
// Do some nice easing for cursor movements
|
||||||
if (Frames.Count > 0)
|
if (Frames.Count > 0)
|
||||||
{
|
{
|
||||||
@ -256,7 +254,7 @@ namespace osu.Game.Rulesets.Osu.Replays
|
|||||||
// If a button is already held, then we simply alternate
|
// If a button is already held, then we simply alternate
|
||||||
if (previousButton != ReplayButtonState.None)
|
if (previousButton != ReplayButtonState.None)
|
||||||
{
|
{
|
||||||
Debug.Assert(previousButton != (ReplayButtonState.Left1 | ReplayButtonState.Right1));
|
Debug.Assert(previousButton != (ReplayButtonState.Left1 | ReplayButtonState.Right1), "Previous button state was not Left1 nor Right1 despite only using those two states.");
|
||||||
|
|
||||||
// Force alternation if we have the same button. Otherwise we can just keep the naturally to us assigned button.
|
// Force alternation if we have the same button. Otherwise we can just keep the naturally to us assigned button.
|
||||||
if (previousButton == button)
|
if (previousButton == button)
|
||||||
|
Loading…
Reference in New Issue
Block a user