summaryrefslogtreecommitdiff
path: root/src/goal_base.h
diff options
context:
space:
mode:
authorCharles Pigott <charlespigott@googlemail.com>2019-04-22 13:20:24 +0100
committerPeterN <peter@fuzzle.org>2019-04-29 17:40:22 +0100
commita5681d3ebac3c791c230bffb5eceac00222b2e01 (patch)
treeb3c9c0185e073b8929fdc846d2968c6cab15c298 /src/goal_base.h
parent327ff898080d94ab129f6e7ae3c268dcf10d6a08 (diff)
downloadopenttd-a5681d3ebac3c791c230bffb5eceac00222b2e01.tar.xz
Codechange: Remove GoalTypeByte
Diffstat (limited to 'src/goal_base.h')
-rw-r--r--src/goal_base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/goal_base.h b/src/goal_base.h
index 532c47ea3..fee4ddce7 100644
--- a/src/goal_base.h
+++ b/src/goal_base.h
@@ -22,7 +22,7 @@ extern GoalPool _goal_pool;
/** Struct about goals, current and completed */
struct Goal : GoalPool::PoolItem<&_goal_pool> {
CompanyID company; ///< Goal is for a specific company; INVALID_COMPANY if it is global
- GoalTypeByte type; ///< Type of the goal
+ GoalType type; ///< Type of the goal
GoalTypeID dst; ///< Index of type
char *text; ///< Text of the goal.
char *progress; ///< Progress text of the goal.