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

pull/155/head
darkvater 20 years ago
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 */
}
static uint32 GetTileTrackStatus_Trees(uint tile, int mode)
static uint32 GetTileTrackStatus_Trees(uint tile, TransportType mode)
{
return 0;
}

@ -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

@ -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>
@ -2560,6 +2560,9 @@
<File
RelativePath="table\clear_land.h">
</File>
<File
RelativePath=".\table\directions.h">
</File>
<File
RelativePath="table\engines.h">
</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;
}

Loading…
Cancel
Save