Cleaned a bit of the tile code. Built train station

This commit is contained in:
2024-10-25 10:30:49 -05:00
parent 39d74cc375
commit ef84c85527
23 changed files with 214 additions and 94 deletions

View File

@ -84,8 +84,8 @@ void drawMap(
// Tile?
tile = mapTileGetByPosition(map, x - offsetX, y - offsetY, 0);
colorDest[x] = symbolGetColorByTile(tile);
bufferDest[x] = symbolGetCharByTile(tile);
colorDest[x] = tileColorGet(tile);
bufferDest[x] = tileSymbolGet(tile);
}
}
}