summaryrefslogtreecommitdiff
path: root/src/industry_cmd.cpp
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2009-01-13 20:43:53 +0000
committerpeter1138 <peter1138@openttd.org>2009-01-13 20:43:53 +0000
commit4585d9785da5d93e9b7d99daa02f4e6aa6dd21c3 (patch)
tree4f3979be8f4424ca7b44a2e80ec1de5621a609c9 /src/industry_cmd.cpp
parentf70b4c5ae448e8775883007af1baa32084957f73 (diff)
downloadopenttd-4585d9785da5d93e9b7d99daa02f4e6aa6dd21c3.tar.xz
(svn r15073) -Fix (r15067) [FS#2532]: Default copy constructors don't necessarily do what you want. Instead of creating one, we now pass a pointer around as that avoids additional allocations.
Diffstat (limited to 'src/industry_cmd.cpp')
-rw-r--r--src/industry_cmd.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp
index 5fd794275..3c3117095 100644
--- a/src/industry_cmd.cpp
+++ b/src/industry_cmd.cpp
@@ -1992,7 +1992,8 @@ static void CanCargoServiceIndustry(CargoID cargo, Industry *ind, bool *c_accept
int WhoCanServiceIndustry(Industry *ind)
{
/* Find all stations within reach of the industry */
- StationList stations = FindStationsAroundTiles(ind->xy, ind->width, ind->height);
+ StationList stations;
+ FindStationsAroundTiles(ind->xy, ind->width, ind->height, &stations);
if (stations.Length() == 0) return 0; // No stations found at all => nobody services