Use TASK_NONE constant

This commit is contained in:
GriffinR
2021-02-19 23:22:26 -05:00
parent e52b46ab43
commit a5852d57d1
40 changed files with 115 additions and 116 deletions

View File

@@ -171,7 +171,7 @@ u8 FindTaskIdByFunc(TaskFunc func)
if (gTasks[i].isActive == TRUE && gTasks[i].func == func)
return (u8)i;
return TAIL_SENTINEL; // No task was found.
return TASK_NONE; // No task was found.
}
u8 GetTaskCount(void)