Skip to content

Commit

Permalink
drmapp: Stub more functions to allow title loading from Wii U Menu (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Maschell committed Apr 8, 2024
1 parent efbf712 commit 9b30be0
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion src/Cafe/OS/libs/drmapp/drmapp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,29 @@ namespace drmapp
return 1;
}

uint32 PatchChkIsFinished()
{
cemuLog_logDebug(LogType::Force, "drmapp.PatchChkIsFinished() - placeholder");
return 1;
}

uint32 AocChkIsFinished()
{
cemuLog_logDebug(LogType::Force, "drmapp.AocChkIsFinished() - placeholder");
return 1;
}

uint32 TicketChkIsFinished()
{
cemuLog_logDebug(LogType::Force, "drmapp.TicketChkIsFinished__3RplFv() - placeholder");
return 1;
}

void Initialize()
{
cafeExportRegisterFunc(NupChkIsFinished, "drmapp", "NupChkIsFinished__3RplFv", LogType::Placeholder);
cafeExportRegisterFunc(PatchChkIsFinished, "drmapp", "PatchChkIsFinished__3RplFv", LogType::Placeholder);
cafeExportRegisterFunc(AocChkIsFinished, "drmapp", "AocChkIsFinished__3RplFv", LogType::Placeholder);
cafeExportRegisterFunc(TicketChkIsFinished, "drmapp", "TicketChkIsFinished__3RplFv", LogType::Placeholder);
}
}
} // namespace drmapp

0 comments on commit 9b30be0

Please sign in to comment.