diff options
author | YamaArashi <shadow962@live.com> | 2016-04-21 23:03:41 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-04-21 23:06:36 -0700 |
commit | 0601fb4d0013bd0f2508364b313acbdc371da674 (patch) | |
tree | 8d11fa93697da09a4e0eb84bb0957d4722f5c8f4 /src/task.c | |
parent | 8890ea36eef541ba571df102c3353ee411033261 (diff) |
Prepare for switch to standard gas (with preprocessor)
Diffstat (limited to 'src/task.c')
-rw-r--r-- | src/task.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/task.c b/src/task.c index 4029d6260..f0f95c997 100644 --- a/src/task.c +++ b/src/task.c @@ -10,7 +10,6 @@ extern struct Task gTasks[]; static void InsertTask(u8 newTaskId); static u8 FindFirstActiveTask(); -static void TaskDummy(u8 taskId); void ResetTasks() { @@ -229,7 +228,7 @@ static u8 FindFirstActiveTask() return taskId; } -static void TaskDummy(u8 taskId) +void TaskDummy(u8 taskId) { } |