mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 23:53:51 +09:00
Fix being able to stop rotation when it isn't started.
This commit is contained in:
@ -214,8 +214,12 @@ namespace osu.Game.Screens.Tournament
|
|||||||
if (availableTeams.Count == 0)
|
if (availableTeams.Count == 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (scrollState == ScrollState.Stopped)
|
switch (scrollState)
|
||||||
|
{
|
||||||
|
case ScrollState.Stopped:
|
||||||
|
case ScrollState.Idle:
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
scrollState = ScrollState.Stopping;
|
scrollState = ScrollState.Stopping;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user