diff options
author | YamaArashi <shadow962@live.com> | 2016-10-23 12:38:40 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-10-23 12:38:40 -0700 |
commit | 368302d722769a6541eef3c7b6e7886b8e86f9ce (patch) | |
tree | f47e81362e769fc35358f7afcaf6691cd8b9275b /src/task.c | |
parent | 12ae329038b44197246de99bcd2c41449f5797e5 (diff) |
define gTasks in task.c
Diffstat (limited to 'src/task.c')
-rw-r--r-- | src/task.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/task.c b/src/task.c index 22d1ed37c..4545c0168 100644 --- a/src/task.c +++ b/src/task.c @@ -6,7 +6,7 @@ #define HEAD_SENTINEL 0xFE #define TAIL_SENTINEL 0xFF -extern struct Task gTasks[]; +struct Task gTasks[NUM_TASKS]; static void InsertTask(u8 newTaskId); static u8 FindFirstActiveTask(); |