summaryrefslogtreecommitdiff
path: root/include/task.h
diff options
context:
space:
mode:
authorultima-soul <akshayjhanji@hotmail.com>2019-12-04 11:44:52 -0800
committerultima-soul <akshayjhanji@hotmail.com>2019-12-04 11:44:52 -0800
commit58cf3313403a056104b561d40051216eb46fa7bc (patch)
tree46651b81c533950407d61ea147b6bb6c9af6af85 /include/task.h
parentb116608e12940141e7c1167d0a2868abc72829fc (diff)
parent67f48e5f28b1773d3570630540a082e99f7cab4e (diff)
Merge branch 'master' into data_dump
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[];