Changeset - r160:666dfc9816a8
[Not reviewed]
master
0 4 1
darkvater - 20 years ago 2004-09-05 17:11:00
darkvater@openttd.org
(svn r161) -Fix: added missing file to project and solved wrong type bug
5 files changed with 19 insertions and 4 deletions:
0 comments (0 inline, 0 general)
table/directions.h
Show inline comments
 
new file 100644
 
static const byte _dir_to_straight_trackdir[4] = {
 
	0, 1, 8, 9,
 
};
 

	
 
static const byte _reverse_dir[4] = {
 
//	3, 0, 1, 2
 
	2, 3, 0, 1
 
};
tree_cmd.c
Show inline comments
 
@@ -618,7 +618,7 @@ static void ClickTile_Trees(uint tile)
 
	/* not used */
 
}
 

	
 
static uint32 GetTileTrackStatus_Trees(uint tile, int mode)
 
static uint32 GetTileTrackStatus_Trees(uint tile, TransportType mode)
 
{
 
	return 0;
 
}
ttd.dsp
Show inline comments
 
@@ -898,6 +898,10 @@ SOURCE=.\table\clear_land.h
 
# End Source File
 
# Begin Source File
 
 
SOURCE=.\table\directions.h
 
# End Source File
 
# Begin Source File
 
 
SOURCE=.\table\engines.h
 
# End Source File
 
# Begin Source File
ttd.vcproj
Show inline comments
 
@@ -294,7 +294,7 @@
 
			</File>
 
			<File
 
				RelativePath=".\console.c">
 
			</File>			
 
			</File>
 
			<File
 
				RelativePath="economy.c">
 
				<FileConfiguration
 
@@ -1103,7 +1103,7 @@
 
			</File>
 
			<File
 
				RelativePath="console.h">
 
			</File>			
 
			</File>
 
			<File
 
				RelativePath="economy.h">
 
			</File>
 
@@ -2561,6 +2561,9 @@
 
				RelativePath="table\clear_land.h">
 
			</File>
 
			<File
 
				RelativePath=".\table\directions.h">
 
			</File>
 
			<File
 
				RelativePath="table\engines.h">
 
			</File>
 
			<File
unmovable_cmd.c
Show inline comments
 
@@ -223,7 +223,7 @@ static void TileLoop_Unmovable(uint tile
 
}
 

	
 

	
 
static uint32 GetTileTrackStatus_Unmovable(uint tile, int mode)
 
static uint32 GetTileTrackStatus_Unmovable(uint tile, TransportType mode)
 
{
 
	return 0;
 
}
0 comments (0 inline, 0 general)