Changeset - r2023:261283a376ab
[Not reviewed]
master
0 2 0
hackykid - 19 years ago 2005-07-08 19:02:26
hackykid@openttd.org
(svn r2532) - Fix: Don't waste space using an int where a byte would suffice. (ludde)
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
table/autorail.h
Show inline comments
 
@@ -50,7 +50,7 @@ const int AutorailTilehSprite[31][6] = {
 

	
 
// maps each pixel of a tile (16x16) to a selection type
 
// (0,0) is the top corner, (16,16) the bottom corner
 
const int AutorailPiece[16][16] = {
 
const byte AutorailPiece[16][16] = {
 
	{ 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5 },
 
	{ 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5 },
 
	{ 2, 2, 2, 2, 2, 2, 0, 0, 0, 0, 5, 5, 5, 5, 5, 5 },
viewport.c
Show inline comments
 
@@ -1875,7 +1875,7 @@ void SetTileSelectBigSize(int ox, int oy
 
/* 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;
 
}
0 comments (0 inline, 0 general)