Files
BanjoRecomp/patches/scheduler_patches.c
2025-02-18 17:13:23 -05:00

18 lines
422 B
C

#include "patches.h"
extern OSMesgQueue sMesgQueue2;
// @recomp Clear the RDP freeze bit here to prevent a race condition.
// TODO look into why this is needed.
RECOMP_PATCH void viMgr_func_8024BFAC(void){
osSendMesg(&sMesgQueue2, 0, OS_MESG_NOBLOCK);
// @recomp Clear the freeze bit.
osDpSetStatus(DPC_CLR_FREEZE);
}
// @recomp Remove the original functionality.
RECOMP_PATCH void func_80247380(void){
}