1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-27 02:32:59 +08:00

Local functions related CI fixes

This commit is contained in:
TocoToucan 2018-01-15 23:27:00 +03:00
parent 3c11978cfa
commit c3ca40dcff
2 changed files with 1 additions and 2 deletions

View File

@ -1,7 +1,6 @@
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Linq;
using OpenTK;
using OpenTK.Graphics;

View File

@ -245,7 +245,7 @@ namespace osu.Game.Screens.Menu
if (IsLoaded)
runnableAction();
else
Schedule(() => runnableAction());
Schedule(runnableAction);
}
[BackgroundDependencyLoader]