diff options
| author | Petr Mrázek | 2012-01-08 02:21:08 +0100 |
|---|---|---|
| committer | Petr Mrázek | 2012-01-08 02:21:08 +0100 |
| commit | 92627e39cb3502812cd5a131716d3d1da8ef625a (patch) | |
| tree | a72b9fd22206ee0eec62b06ec7bcaaf8833a56cc /MapLoading.cpp | |
| parent | 545b2730ed137935643778f1b8ba115ae11c50a2 (diff) | |
| download | stonesense-92627e39cb3502812cd5a131716d3d1da8ef625a.tar.gz stonesense-92627e39cb3502812cd5a131716d3d1da8ef625a.tar.bz2 stonesense-92627e39cb3502812cd5a131716d3d1da8ef625a.tar.xz | |
Buildings aren't a module anymore.
Diffstat (limited to 'MapLoading.cpp')
| -rw-r--r-- | MapLoading.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MapLoading.cpp b/MapLoading.cpp index 2a3c640..3161392 100644 --- a/MapLoading.cpp +++ b/MapLoading.cpp @@ -197,7 +197,7 @@ void ReadCellToSegment(DFHack::Core& DF, WorldSegment& segment, int CellX, int C uint32_t BoundrySX, uint32_t BoundrySY,
uint32_t BoundryEX, uint32_t BoundryEY,
uint16_t Flags/*not in use*/,
- vector<t_building>* allBuildings,
+ vector<Buildings::t_building>* allBuildings,
vector<t_construction>* allConstructions,
vector< vector <uint16_t> >* allLayers,
vector<DFHack::t_feature> * global_features,
@@ -703,7 +703,7 @@ WorldSegment* ReadMapSegment(DFHack::Core &DF, int x, int y, int z, int sizex, i segment->rotation = DisplayedRotation;
//read world wide buildings
- vector<t_building> allBuildings;
+ vector<Buildings::t_building> allBuildings;
if(!config.skipBuildings)
ReadBuildings(DF, &allBuildings);
|
