mirror of
https://github.com/ppy/osu
synced 2025-01-10 08:09:40 +00:00
Change method name
This commit is contained in:
parent
1a117d1511
commit
84cadc688a
@ -168,7 +168,7 @@ namespace osu.Game.Screens.Edit
|
||||
|
||||
menuBar.Mode.ValueChanged += onModeChanged;
|
||||
|
||||
host.Exiting += onQuittingGame;
|
||||
host.Exiting += onExitingGame;
|
||||
|
||||
bottomBackground.Colour = colours.Gray2;
|
||||
}
|
||||
@ -256,7 +256,7 @@ namespace osu.Game.Screens.Edit
|
||||
}
|
||||
}
|
||||
|
||||
host.Exiting -= onQuittingGame;
|
||||
host.Exiting -= onExitingGame;
|
||||
|
||||
return base.OnExiting(next);
|
||||
}
|
||||
@ -295,6 +295,6 @@ namespace osu.Game.Screens.Edit
|
||||
clock.SeekForward(!clock.IsRunning, amount);
|
||||
}
|
||||
|
||||
private bool onQuittingGame() => isExitingGame = true;
|
||||
private bool onExitingGame() => isExitingGame = true;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user