mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-12 10:37:58 -05:00
* Bravely Default/Second stuck #1822 CancelLibraryApplet stub * Log parameter. * Taking care of comments * Sync with 3DBrew * White space ? * lower case
This commit is contained in:
@ -396,6 +396,15 @@ void StartLibraryApplet(Service::Interface* self) {
|
||||
cmd_buff[1] = applet->Start(parameter).raw;
|
||||
}
|
||||
|
||||
void CancelLibraryApplet(Service::Interface* self) {
|
||||
u32* cmd_buff = Kernel::GetCommandBuffer();
|
||||
u32 exiting = cmd_buff[1] & 0xFF;
|
||||
|
||||
cmd_buff[1] = 1; // TODO: Find the return code meaning
|
||||
|
||||
LOG_WARNING(Service_APT, "(STUBBED) called exiting=%u", exiting);
|
||||
}
|
||||
|
||||
void SetScreenCapPostPermission(Service::Interface* self) {
|
||||
u32* cmd_buff = Kernel::GetCommandBuffer();
|
||||
|
||||
|
Reference in New Issue
Block a user