From 736829a119b38e9b7b674305d1cb2544474e5b8c Mon Sep 17 00:00:00 2001 From: Luka Jankovic Date: Sat, 30 Aug 2025 20:26:03 +0200 Subject: [PATCH] mark walls from scene file as done by default --- kubo_file.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kubo_file.c b/kubo_file.c index 959b29f..ccffaa8 100644 --- a/kubo_file.c +++ b/kubo_file.c @@ -29,6 +29,8 @@ struct kubo_context kubo_file_parse(char *file_name) { kubo_wall_add_vertex(wall, vertex); } + wall->state = KUBO_WALL_DONE; + kubo_wall_arr_add(&context.walls, wall); }