Ryujinx/Ryujinx.HLE/HOS/Services/Ectx/IWriterForSystem.cs
Ac_K 53b9267b47
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
2021-03-25 23:25:49 +01:00

8 lines
No EOL
189 B
C#

namespace Ryujinx.HLE.HOS.Services.Ectx
{
[Service("ectx:w")] // 11.0.0+
class IWriterForSystem : IpcService
{
public IWriterForSystem(ServiceCtx context) { }
}
}