Merge branch 'master' into jgrpp

This commit is contained in:
Jonathan G Rennison
2020-07-07 17:28:19 +01:00
18 changed files with 138 additions and 119 deletions

View File

@@ -255,11 +255,11 @@ static inline TileIndexDiff ToTileIndexDiff(TileIndexDiffC tidc)
* @param y Another tile to add
* @return The resulting tile(index)
*/
#define TILE_ADD(x, y) ((x) + (y))
# define TILE_ADD(x, y) ((x) + (y))
#else
extern TileIndex TileAdd(TileIndex tile, TileIndexDiff add,
const char *exp, const char *file, int line);
#define TILE_ADD(x, y) (TileAdd((x), (y), #x " + " #y, __FILE__, __LINE__))
# define TILE_ADD(x, y) (TileAdd((x), (y), #x " + " #y, __FILE__, __LINE__))
#endif
/**