# HG changeset patch # User tron # Date 1152955289 0 # Node ID 8d0e380323b0bd1abe4891a0d782ab2de863b510 # Parent 2f16698d82068a9a57b7d6ccabb09cf7815ae56a (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 backport diff -r 2f16698d8206 -r 8d0e380323b0 landscape.c --- a/landscape.c Fri Jul 14 18:45:31 2006 +0000 +++ b/landscape.c Sat Jul 15 09:21:29 2006 +0000 @@ -193,6 +193,7 @@ 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