summaryrefslogtreecommitdiff
path: root/include/task.h
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@users.noreply.github.com>2019-12-04 13:06:48 -0500
committerGitHub <noreply@github.com>2019-12-04 13:06:48 -0500
commit3362b7f671a07cb154f3f65221ed055628303723 (patch)
tree61e7798050d0000e7d62ff0c7d152b10db80c388 /include/task.h
parentbc0fe11d163da1131daf63bdeb2abcba788f6036 (diff)
parent11a52655f307788f042e34c1bcf345d2b2de61b8 (diff)
Merge pull request #173 from ghoulslash/pokeball
Pokeball
Diffstat (limited to 'include/task.h')
-rw-r--r--include/task.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/task.h b/include/task.h
index 834bb5655..7a7a2ff22 100644
--- a/include/task.h
+++ b/include/task.h
@@ -10,13 +10,13 @@ typedef void (*TaskFunc)(u8 taskId);
struct Task
{
- TaskFunc func;
- bool8 isActive;
- u8 prev;
- u8 next;
- u8 priority;
- s16 data[16];
-};
+ /*0x00*/ TaskFunc func;
+ /*0x04*/ bool8 isActive;
+ /*0x05*/ u8 prev;
+ /*0x06*/ u8 next;
+ /*0x07*/ u8 priority;
+ /*0x08*/ s16 data[16];
+}; /*size = 0x28*/
extern struct Task gTasks[];