1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 14:12:54 +08:00

formated using dotnet format

This commit is contained in:
BananeVolante 2020-06-13 10:56:02 +02:00
parent 19da2fb4af
commit 794b8673e2

View File

@ -78,7 +78,7 @@ namespace osu.Game.Screens.Play
private IAPIProvider api { get; set; } private IAPIProvider api { get; set; }
private SampleChannel sampleRestart; private SampleChannel sampleRestart;
private SampleChannel samplePause; private SampleChannel samplePause;
public BreakOverlay BreakOverlay; public BreakOverlay BreakOverlay;
@ -163,9 +163,9 @@ namespace osu.Game.Screens.Play
return; return;
sampleRestart = audio.Samples.Get(@"Gameplay/restart"); sampleRestart = audio.Samples.Get(@"Gameplay/restart");
samplePause = audio.Samples.Get(@"Gameplay/pause-loop"); samplePause = audio.Samples.Get(@"Gameplay/pause-loop");
if(samplePause != null) { samplePause.Looping = true; } if (samplePause != null) { samplePause.Looping = true; }
mouseWheelDisabled = config.GetBindable<bool>(OsuSetting.MouseDisableWheel); mouseWheelDisabled = config.GetBindable<bool>(OsuSetting.MouseDisableWheel);