moved into the switch case

This commit is contained in:
V1ntagezTV 2019-09-29 00:35:47 +05:00
parent 2681e2064a
commit 9f1c378733
1 changed files with 1 additions and 1 deletions

View File

@ -60,10 +60,10 @@ protected virtual OsuScreen CreateLoadableScreen()
private IntroScreen getIntroSequence()
{
Random random = new Random();
switch (introSequence)
{
case IntroSequence.Random:
var random = new Random();
if (random.Next(2) == 0)
return new IntroCircles();
else