From 53b9267b47a1541d596b763894c75fdecf5698e9 Mon Sep 17 00:00:00 2001 From: Ac_K Date: Thu, 25 Mar 2021 23:25:49 +0100 Subject: am/ectx: Implement SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled and add service placeholder (#2136) * am/ectx: Implement SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled and add service placeholder This PR implements `am` service call `SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled` (closes #2028) accordingly to RE and adds placeholder for the `ectx` service. Both were added in 11.0.0+ firmware and are needed to boots games which needs this version. Some games are now playable/bootable: * Remove unused warning --- Ryujinx.HLE/HOS/Services/Ectx/IWriterForSystem.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Ryujinx.HLE/HOS/Services/Ectx/IWriterForSystem.cs (limited to 'Ryujinx.HLE/HOS/Services/Ectx/IWriterForSystem.cs') diff --git a/Ryujinx.HLE/HOS/Services/Ectx/IWriterForSystem.cs b/Ryujinx.HLE/HOS/Services/Ectx/IWriterForSystem.cs new file mode 100644 index 00000000..621ec777 --- /dev/null +++ b/Ryujinx.HLE/HOS/Services/Ectx/IWriterForSystem.cs @@ -0,0 +1,8 @@ +namespace Ryujinx.HLE.HOS.Services.Ectx +{ + [Service("ectx:w")] // 11.0.0+ + class IWriterForSystem : IpcService + { + public IWriterForSystem(ServiceCtx context) { } + } +} \ No newline at end of file -- cgit v1.2.3