mirror of
https://github.com/BanjoRecomp/BanjoRecomp
synced 2026-08-29 00:11:53 -04:00
18 lines
422 B
C
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){
|
|
}
|
|
|