1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 05:02:55 +08:00

Renamed pauseDisableTime to pauseCooldown

This commit is contained in:
DrabWeb 2017-01-27 08:13:39 -04:00
parent 8c6d9bdf2e
commit e115120543

View File

@ -24,7 +24,7 @@ namespace osu.Game.Overlays.Pause
public bool isPaused = false;
private int fadeDuration = 100;
private double pauseDisableTime = 1000;
private double pauseCooldown = 1000;
private double lastActionTime = -1000;
private PauseButton resumeButton;
@ -106,8 +106,7 @@ namespace osu.Game.Overlays.Pause
public void Pause()
{
// Only allow pausing once a second
if (Time.Current >= (lastActionTime + pauseDisableTime))
if (Time.Current >= (lastActionTime + pauseCooldown))
{
lastActionTime = Time.Current;
Show();