Event Actor docs that kind of ballooned into a bunch of stuff (#200)

* stuff

* too much

* Torch commit

* torch again
This commit is contained in:
petrie911
2024-04-05 15:11:36 -05:00
committed by GitHub
parent ac41c180a9
commit 126a55aa0e
108 changed files with 5009 additions and 5101 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
#include "sys.h"
TimerTask sTimerTasks[0x10];
TimerTask sTimerTasks[16];
TimerTask* Timer_AllocateTask(void) {
s32 i;
for (i = 0; i < 0x10; i++) {
for (i = 0; i < ARRAY_COUNT(sTimerTasks); i++) {
if (!sTimerTasks[i].active) {
return &sTimerTasks[i];
}