Revert "bcat ipc (#4446)" (#4801)

This reverts commit 4250732353.
This commit is contained in:
gdkchan 2023-05-04 13:16:51 -03:00 committed by GitHub
parent 3b8ac1641a
commit 264438ff19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
31 changed files with 418 additions and 592 deletions

View file

@ -1,5 +1,3 @@
using LibHac;
namespace Ryujinx.Horizon
{
public struct HorizonOptions
@ -7,13 +5,10 @@ namespace Ryujinx.Horizon
public bool IgnoreMissingServices { get; }
public bool ThrowOnInvalidCommandIds { get; }
public HorizonClient BcatClient { get; }
public HorizonOptions(bool ignoreMissingServices, HorizonClient bcatClient)
public HorizonOptions(bool ignoreMissingServices)
{
IgnoreMissingServices = ignoreMissingServices;
ThrowOnInvalidCommandIds = true;
BcatClient = bcatClient;
}
}
}