Update remaining usages of GetSuitableHost in template projects

This commit is contained in:
Dean Herbert
2022-01-25 14:15:29 +09:00
parent dd2caea694
commit 86c844bd58
7 changed files with 4 additions and 7 deletions

View File

@ -13,7 +13,7 @@ namespace osu.Game.Rulesets.EmptyScrolling.Tests
[STAThread]
public static int Main(string[] args)
{
using (DesktopGameHost host = Host.GetSuitableHost(@"osu", true))
using (DesktopGameHost host = Host.GetSuitableDesktopHost(@"osu", new HostOptions { BindIPC = true }))
{
host.Run(new OsuTestBrowser());
return 0;