Add Placeable Wood Walls

This commit is contained in:
Andre Schweiger 2015-12-27 22:32:55 +01:00
parent f3d6264366
commit 23524f8cc4
4 changed files with 32 additions and 0 deletions

View file

@ -643,6 +643,9 @@ void renderTile(int i, int x, int y) {
age = 5;
render16(x, y, 160 + (age << 4), 0, 0);
break;
case TILE_WOOD_WALL:
render16b(x, y, grassTable[checkSurrTiles4(x >> 4, y >> 4, TILE_WOOD_WALL)], 176, 0, woodColor[0]);
break;
}
}