05-14-2020, 04:01 AM
Are you passing the correct row and column? The following code works for me, when I press input 1, it removes the first ring:
Code:
while (TLN_ProcessWindow()) {
if (TLN_GetInput(INPUT_BUTTON1)) {
Tile tile = {0};
TLN_SetTilemapTile(foreground_tilemap, 54, 6, &tile);
}
TLN_DrawFrame(0);
}