summaryrefslogtreecommitdiff
path: root/src/goal_base.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/goal_base.h')
-rw-r--r--src/goal_base.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/goal_base.h b/src/goal_base.h
index f82afa5be..532c47ea3 100644
--- a/src/goal_base.h
+++ b/src/goal_base.h
@@ -21,12 +21,12 @@ extern GoalPool _goal_pool;
/** Struct about goals, current and completed */
struct Goal : GoalPool::PoolItem<&_goal_pool> {
- CompanyByte company; ///< Goal is for a specific company; INVALID_COMPANY if it is global
- GoalTypeByte type; ///< Type of the goal
- GoalTypeID dst; ///< Index of type
- char *text; ///< Text of the goal.
- char *progress; ///< Progress text of the goal.
- bool completed; ///< Is the goal completed or not?
+ CompanyID company; ///< Goal is for a specific company; INVALID_COMPANY if it is global
+ GoalTypeByte type; ///< Type of the goal
+ GoalTypeID dst; ///< Index of type
+ char *text; ///< Text of the goal.
+ char *progress; ///< Progress text of the goal.
+ bool completed; ///< Is the goal completed or not?
/**
* We need an (empty) constructor so struct isn't zeroed (as C++ standard states)