0 -> nullptr in 2 places

(cherry-picked from commit 3be39a98fe)
This commit is contained in:
Charles Dang 2018-03-24 10:22:25 +11:00
parent aa1c926065
commit 5a017b5ef1
2 changed files with 2 additions and 2 deletions

View file

@ -182,7 +182,7 @@ display::display(const display_context * dc, std::weak_ptr<wb::manager> wb, repo
turbo_speed_(2),
turbo_(false),
invalidateGameStatus_(true),
map_labels_(new map_labels(0)),
map_labels_(new map_labels(nullptr)),
reports_object_(&reports_object),
scroll_event_("scrolled"),
complete_redraw_event_("completely_redrawn"),

View file

@ -45,7 +45,7 @@ private:
chamber()
: center()
, locs()
, items(0)
, items(nullptr)
{
}