Update to 14.0-beta1

This commit is contained in:
dP
2024-02-04 02:18:17 +05:30
parent 79037e2c65
commit 33ef333b57
1325 changed files with 138465 additions and 70987 deletions

View File

@@ -16,17 +16,17 @@
* Make a nice void tile ;)
* @param t the tile to make void
*/
static inline void MakeVoid(TileIndex t)
inline void MakeVoid(Tile t)
{
SetTileType(t, MP_VOID);
SetTileHeight(t, 0);
_m[t].m1 = 0;
_m[t].m2 = 0;
_m[t].m3 = 0;
_m[t].m4 = 0;
_m[t].m5 = 0;
_me[t].m6 = 0;
_me[t].m7 = 0;
t.m1() = 0;
t.m2() = 0;
t.m3() = 0;
t.m4() = 0;
t.m5() = 0;
t.m6() = 0;
t.m7() = 0;
}
#endif /* VOID_MAP_H */