diff --git a/osu.Desktop.VisualTests/Program.cs b/osu.Desktop.VisualTests/Program.cs index b8583229b8..43d79d92d2 100644 --- a/osu.Desktop.VisualTests/Program.cs +++ b/osu.Desktop.VisualTests/Program.cs @@ -13,7 +13,7 @@ namespace osu.Framework.VisualTests public static void Main(string[] args) { BasicGameHost host = Host.GetSuitableHost(); - host.Load(new VisualTestGame()); + host.Add(new VisualTestGame()); host.Run(); } } diff --git a/osu.Desktop/Program.cs b/osu.Desktop/Program.cs index 3f745f3b84..ca085e8648 100644 --- a/osu.Desktop/Program.cs +++ b/osu.Desktop/Program.cs @@ -14,7 +14,7 @@ namespace osu.Desktop public static void Main() { BasicGameHost host = Host.GetSuitableHost(); - host.Load(new OsuGame()); + host.Add(new OsuGame()); host.Run(); } }