mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 22:26:41 +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)
|
||||
return;
|
||||
|
||||
if (scrollState == ScrollState.Stopped)
|
||||
return;
|
||||
switch (scrollState)
|
||||
{
|
||||
case ScrollState.Stopped:
|
||||
case ScrollState.Idle:
|
||||
return;
|
||||
}
|
||||
|
||||
scrollState = ScrollState.Stopping;
|
||||
}
|
||||
|
Reference in New Issue
Block a user