Wire up one of the settings to the config

One step at a time, right
This commit is contained in:
Drew DeVault
2016-11-07 19:04:31 -05:00
parent 42102f7378
commit 1bca78f4b6
6 changed files with 104 additions and 26 deletions

View File

@ -13,9 +13,11 @@ namespace osu.Desktop.VisualTests
[STAThread]
public static void Main(string[] args)
{
BasicGameHost host = Host.GetSuitableHost(@"osu-visual-tests");
host.Add(new VisualTestGame());
host.Run();
using (BasicGameHost host = Host.GetSuitableHost(@"osu-visual-tests"))
{
host.Add(new VisualTestGame());
host.Run();
}
}
}
}