Rename property

This commit is contained in:
ekrctb
2021-04-12 18:50:25 +09:00
parent 6d18b3db00
commit 359fae895f
3 changed files with 7 additions and 7 deletions

View File

@ -24,7 +24,7 @@ namespace osu.Game.Rulesets.Replays
/// <summary>
/// Whether we are waiting for new frames to be received.
/// </summary>
public bool WaitingNextFrame => !replay.HasReceivedAllFrames && currentFrameIndex == Frames.Count - 1;
public bool WaitingForFrame => !replay.HasReceivedAllFrames && currentFrameIndex == Frames.Count - 1;
/// <summary>
/// The current frame of the replay.
@ -140,7 +140,7 @@ namespace osu.Game.Rulesets.Replays
frameEnd = getFrameTime(currentFrameIndex + 1);
// Pause until more frames are arrived.
if (WaitingNextFrame && frameStart < time)
if (WaitingForFrame && frameStart < time)
{
CurrentTime = frameStart;
return null;