Fix incorrect flag to options conversion

This commit is contained in:
Dean Herbert
2022-01-25 14:16:15 +09:00
parent 86c844bd58
commit 5872dabf60
3 changed files with 3 additions and 3 deletions

View File

@ -55,7 +55,7 @@ namespace osu.Desktop
}
}
using (DesktopGameHost host = Host.GetSuitableDesktopHost(gameName, new HostOptions { PortableInstallation = true }))
using (DesktopGameHost host = Host.GetSuitableDesktopHost(gameName, new HostOptions { BindIPC = true }))
{
host.ExceptionThrown += handleException;