task_decrease method

void task_decrease()

Implementation

void task_decrease() {
  task_count -= 1;
  if (task_count < 0) {
    task_count = 0;
  }
}