mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-29 16:14:59 -04:00
12 lines
302 B
C
12 lines
302 B
C
#include "libultra/libultra.h"
|
|
|
|
OSTimer __osBaseTimer;
|
|
OSTimer* __osTimerList = &__osBaseTimer;
|
|
|
|
void __osTimerServicesInit(void){
|
|
__osTimerList->next = __osTimerList->prev = __osTimerList;
|
|
__osTimerList->value = 0;
|
|
__osTimerList->interval = 0;
|
|
__osTimerList->mq = NULL;
|
|
__osTimerList->msg = 0;
|
|
} |