src/industry_gui.cpp
branchcustombridgeheads
changeset 5650 aefc131bf5ce
parent 5649 55c8267c933f
child 5852 cb3f71b16e1a
--- a/src/industry_gui.cpp	Thu Jan 11 13:41:16 2007 +0000
+++ b/src/industry_gui.cpp	Mon Jan 15 20:14:06 2007 +0000
@@ -16,6 +16,7 @@
 #include "industry.h"
 #include "town.h"
 #include "variables.h"
+#include "helpers.hpp"
 
 const byte _build_industry_types[4][12] = {
 	{  1,  2,  4,  6,  8,  0,  3,  5,  9, 11, 18 },
@@ -559,7 +560,7 @@
 	if (GetNumIndustries() == 0) return;
 
 	/* Create array for sorting */
-	_industry_sort = realloc((void *)_industry_sort, (GetMaxIndustryIndex() + 1) * sizeof(_industry_sort[0]));
+	ReallocT(&_industry_sort, GetMaxIndustryIndex() + 1);
 	if (_industry_sort == NULL) error("Could not allocate memory for the industry-sorting-list");
 
 	FOR_ALL_INDUSTRIES(i) _industry_sort[n++] = i;