Skip to content

Commit 614605a

Browse files
committed
Fixed integer truncation in filltraffic.
1 parent 5c4ba8c commit 614605a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/filltraffic.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ DFhackCExport command_result alltraffic(DFHack::Core * c, std::vector<std::strin
2626
//Forward Declarations for Utility Functions
2727
DFhackCExport command_result setAllMatching(DFHack::Core * c, checkTile checkProc,
2828
DFHack::DFCoord minCoord = DFHack::DFCoord(0, 0, 0),
29-
DFHack::DFCoord maxCoord = DFHack::DFCoord(0xFFFF, 0xFFFF, 0xFFFFFFFF));
29+
DFHack::DFCoord maxCoord = DFHack::DFCoord(0xFFFF, 0xFFFF, 0xFFFF));
3030

3131
void allHigh(DFHack::DFCoord coord, MapExtras::MapCache * map);
3232
void allNormal(DFHack::DFCoord coord, MapExtras::MapCache * map);

0 commit comments

Comments
 (0)