1
0
Fork 0

(svn r161) -Fix: added missing file to project and solved wrong type bug

release/0.4.5
darkvater 2004-09-05 17:11:00 +00:00
parent 10d54ac604
commit 692c147fae
5 changed files with 19 additions and 4 deletions

View File

@ -0,0 +1,8 @@
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
};

View File

@ -618,7 +618,7 @@ static void ClickTile_Trees(uint tile)
/* not used */ /* not used */
} }
static uint32 GetTileTrackStatus_Trees(uint tile, int mode) static uint32 GetTileTrackStatus_Trees(uint tile, TransportType mode)
{ {
return 0; return 0;
} }

View File

@ -898,6 +898,10 @@ SOURCE=.\table\clear_land.h
# End Source File # End Source File
# Begin Source File # Begin Source File
SOURCE=.\table\directions.h
# End Source File
# Begin Source File
SOURCE=.\table\engines.h SOURCE=.\table\engines.h
# End Source File # End Source File
# Begin Source File # Begin Source File

View File

@ -294,7 +294,7 @@
</File> </File>
<File <File
RelativePath=".\console.c"> RelativePath=".\console.c">
</File> </File>
<File <File
RelativePath="economy.c"> RelativePath="economy.c">
<FileConfiguration <FileConfiguration
@ -1103,7 +1103,7 @@
</File> </File>
<File <File
RelativePath="console.h"> RelativePath="console.h">
</File> </File>
<File <File
RelativePath="economy.h"> RelativePath="economy.h">
</File> </File>
@ -2560,6 +2560,9 @@
<File <File
RelativePath="table\clear_land.h"> RelativePath="table\clear_land.h">
</File> </File>
<File
RelativePath=".\table\directions.h">
</File>
<File <File
RelativePath="table\engines.h"> RelativePath="table\engines.h">
</File> </File>

View File

@ -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; return 0;
} }