(svn r2532) - Fix: Don't waste space using an int where a byte would suffice. (ludde)

This commit is contained in:
hackykid
2005-07-08 19:02:26 +00:00
parent 0438c54bd7
commit dad7e8f486
2 changed files with 2 additions and 2 deletions

View File

@@ -1875,7 +1875,7 @@ void SetTileSelectBigSize(int ox, int oy, int sx, int sy) {
/* returns the best autorail highlight type from map coordinates */
static byte GetAutorailHT(int x, int y)
{
int i;
byte i;
i = AutorailPiece[x&0xF][y&0xF];
return HT_RAIL | i;
}