mirror of https://github.com/OpenTTD/OpenTTD
(svn r5499) Fix a case of an uninitialised variable in r5368 which caused some graphical glitches at foundations (wrong foundation borders, flickering)
This problem only exists in the backportrelease/0.4
parent
d81a7bf904
commit
6708e181eb
|
@ -193,6 +193,7 @@ static Slope GetFoundationSlope(TileIndex tile, uint* z)
|
|||
|
||||
FindLandscapeHeightByTile(&ti, tile);
|
||||
tileh = ti.tileh;
|
||||
*z = ti.z;
|
||||
slope = _tile_type_procs[GetTileType(tile)]->get_slope_tileh_proc(&ti);
|
||||
|
||||
// Flatter slope -> higher base height
|
||||
|
|
Loading…
Reference in New Issue