summaryrefslogtreecommitdiff
path: root/src/goal_gui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/goal_gui.cpp')
-rw-r--r--src/goal_gui.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/goal_gui.cpp b/src/goal_gui.cpp
index 7c3e33004..758eae9ad 100644
--- a/src/goal_gui.cpp
+++ b/src/goal_gui.cpp
@@ -223,7 +223,7 @@ struct GoalListWindow : public Window {
}
case GC_PROGRESS:
- if (s->progress != NULL) {
+ if (s->progress != nullptr) {
SetDParamStr(0, s->progress);
StringID str = s->completed ? STR_GOALS_PROGRESS_COMPLETE : STR_GOALS_PROGRESS;
int progress_x = x;
@@ -282,7 +282,7 @@ struct GoalListWindow : public Window {
uint max_width = 0;
Goal *s;
FOR_ALL_GOALS(s) {
- if (s->progress != NULL) {
+ if (s->progress != nullptr) {
SetDParamStr(0, s->progress);
StringID str = s->completed ? STR_GOALS_PROGRESS_COMPLETE : STR_GOALS_PROGRESS;
uint str_width = GetStringBoundingBox(str).width;
@@ -473,7 +473,7 @@ static const NWidgetPart _nested_goal_question_widgets[] = {
};
static WindowDesc _goal_question_list_desc(
- WDP_CENTER, NULL, 0, 0,
+ WDP_CENTER, nullptr, 0, 0,
WC_GOAL_QUESTION, WC_NONE,
WDF_CONSTRUCTION,
_nested_goal_question_widgets, lengthof(_nested_goal_question_widgets)