[Core/hle]: Add Stub Cmd90 in ILibraryAppletAccessor

This commit is contained in:
liberodark 2025-12-08 08:59:37 +01:00
parent 952c8fece1
commit a3046c6942
2 changed files with 7 additions and 0 deletions

View file

@ -36,6 +36,7 @@ ILibraryAppletAccessor::ILibraryAppletAccessor(Core::System& system_,
{120, nullptr, "GetLibraryAppletInfo"},
{150, nullptr, "RequestForAppletToGetForeground"},
{160, D<&ILibraryAppletAccessor::GetIndirectLayerConsumerHandle>, "GetIndirectLayerConsumerHandle"},
{90, D<&ILibraryAppletAccessor::Cmd90>, "Cmd90"},
};
// clang-format on
@ -138,6 +139,11 @@ Result ILibraryAppletAccessor::GetIndirectLayerConsumerHandle(Out<u64> out_handl
R_SUCCEED();
}
Result ILibraryAppletAccessor::Cmd90(InLargeData<std::array<u8, 0x20>, BufferAttr_HipcMapAlias> data) {
LOG_WARNING(Service_AM, "(STUBBED) called");
R_SUCCEED();
}
void ILibraryAppletAccessor::FrontendExecute() {
if (m_applet->frontend) {
m_applet->frontend->Initialize();

View file

@ -33,6 +33,7 @@ private:
Result GetPopOutDataEvent(OutCopyHandle<Kernel::KReadableEvent> out_event);
Result GetPopInteractiveOutDataEvent(OutCopyHandle<Kernel::KReadableEvent> out_event);
Result GetIndirectLayerConsumerHandle(Out<u64> out_handle);
Result Cmd90(InLargeData<std::array<u8, 0x20>, BufferAttr_HipcMapAlias> data);
void FrontendExecute();
void FrontendExecuteInteractive();