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