(svn r8056) -Codechange: Remove swap_byte, swap_byte, and siblings (some were not used anyway) and replace them by our SwapT implementation

This commit is contained in:
celestar
2007-01-11 12:32:10 +00:00
parent 2ac0410767
commit 1691b2da61
5 changed files with 15 additions and 22 deletions

View File

@@ -2043,7 +2043,7 @@ static int CalcHeightdiff(HighLightStyle style, uint distance, TileIndex start_t
uint h0, h1, ht; // start heigth, end height, and temp variable
if (start_tile == end_tile) return 0;
if (swap) swap_tile(&start_tile, &end_tile);
if (swap) SwapT(&start_tile, &end_tile);
switch (style & HT_DRAG_MASK) {
case HT_RECT: {
@@ -2103,7 +2103,7 @@ static int CalcHeightdiff(HighLightStyle style, uint distance, TileIndex start_t
} break;
}
if (swap) swap_uint32(&h0, &h1);
if (swap) SwapT(&h0, &h1);
/* Minimap shows height in intervals of 50 meters, let's do the same */
return (int)(h1 - h0) * 50;
}