| 594 | void lgoal::ResetModified(void) { m_modified = 0; } |
| 595 | |
| 596 | bool levelgoals::GoalStatus(int index, char operation, int *flags, bool announce) { |
| 597 | if (index < 0 || index >= m_num_goals) |
| 598 | return false; |
| 599 | |
| 600 | return m_goal[index].GetStatus(index, operation, flags, false, announce); |
| 601 | } |
| 602 | |
| 603 | bool levelgoals::GoalPriority(int index, char operation, int *flags) { |
| 604 | if (index < 0 || index >= m_num_goals) |
no test coverage detected