Skip to content

Commit

Permalink
Remove debug changes
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Aug 29, 2022
1 parent 75531d2 commit c4fd5c8
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions osu.Game/Screens/Play/MasterGameplayClockContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ protected override void StopGameplayClock()
if (IsLoaded)
{
// During normal operation, the source is stopped after performing a frequency ramp.
this.TransformBindableTo(GameplayClock.ExternalPauseFrequencyAdjust, 0, 2000, Easing.Out).OnComplete(_ =>
this.TransformBindableTo(GameplayClock.ExternalPauseFrequencyAdjust, 0, 200, Easing.Out).OnComplete(_ =>
{
if (IsPaused.Value)
base.StopGameplayClock();
Expand Down Expand Up @@ -149,7 +149,7 @@ protected override void StartGameplayClock()

if (IsLoaded)
{
this.TransformBindableTo(GameplayClock.ExternalPauseFrequencyAdjust, 1, 2000, Easing.In);
this.TransformBindableTo(GameplayClock.ExternalPauseFrequencyAdjust, 1, 200, Easing.In);
}
else
{
Expand Down Expand Up @@ -191,14 +191,6 @@ public void StopUsingBeatmapClock()

private bool speedAdjustmentsApplied;

protected override void Update()
{
base.Update();

if (GameplayClock.ExternalPauseFrequencyAdjust.Value < 1)
Logger.Log($"{GameplayClock.CurrentTime}");
}

private void addSourceClockAdjustments()
{
if (speedAdjustmentsApplied)
Expand Down

0 comments on commit c4fd5c8

Please sign in to comment.