blob: d52cf460df32caa45a6d2128f970484f4540b3ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "stdafx.h"
#include "tile.h"
void SetMapExtraBits(TileIndex tile, byte bits)
{
assert(tile < MapSize());
_map_extra_bits[tile >> 2] &= ~(3 << ((tile & 3) * 2));
_map_extra_bits[tile >> 2] |= (bits&3) << ((tile & 3) * 2);
}
uint GetMapExtraBits(TileIndex tile)
{
assert(tile < MapSize());
return (_map_extra_bits[tile >> 2] >> (tile & 3) * 2) & 3;
}
|