mirror of https://github.com/OpenTTD/OpenTTD
(svn r161) -Fix: added missing file to project and solved wrong type bug
parent
10d54ac604
commit
692c147fae
|
@ -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
|
||||||
|
};
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
4
ttd.dsp
4
ttd.dsp
|
@ -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
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue