diff options
author | YamaArashi <shadow962@live.com> | 2016-04-03 03:52:41 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-04-03 03:52:41 -0700 |
commit | 1d398297a94f918651f532f066a9909761341d62 (patch) | |
tree | ec55f7c6a81c57743db397e5aa4a7d236230fc49 /src/task.c | |
parent | 5b648ca2591f34c06ea51e3f3b6f9c5835533310 (diff) |
make TaskDummy static
Diffstat (limited to 'src/task.c')
-rw-r--r-- | src/task.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/task.c b/src/task.c index f0f95c997..4029d6260 100644 --- a/src/task.c +++ b/src/task.c @@ -10,6 +10,7 @@ extern struct Task gTasks[]; static void InsertTask(u8 newTaskId); static u8 FindFirstActiveTask(); +static void TaskDummy(u8 taskId); void ResetTasks() { @@ -228,7 +229,7 @@ static u8 FindFirstActiveTask() return taskId; } -void TaskDummy(u8 taskId) +static void TaskDummy(u8 taskId) { } |