mirror of
https://github.com/HarbourMasters/Starship
synced 2026-07-29 15:45:14 -04:00
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:
+2
-2
@@ -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];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user