From e5dc8bad2f464f322da41b0177661d3808dcadb6 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Thu, 6 Oct 2016 17:48:38 +0900 Subject: [PATCH] Bring up-to-date with latest framework. --- osu.Desktop.VisualTests/Program.cs | 2 +- osu.Desktop/Program.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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(); } }