Change colour of one-way platform

scene_man
En Yi 2023-05-04 13:27:44 +08:00
parent b5e7d8846f
commit d59c902958
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ static void level_scene_render_func(Scene_t* scene)
}
else if (tilemap.tiles[i].tile_type == ONEWAY_TILE)
{
DrawRectangle(x, y, TILE_SIZE, TILE_SIZE, BROWN);
DrawRectangle(x, y, TILE_SIZE, TILE_SIZE, MAROON);
}
else if (tilemap.tiles[i].water_level > 0)
{