diff options
| author | Aldrik Ramaekers <aldrik@amftech.nl> | 2023-12-27 19:56:14 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrik@amftech.nl> | 2023-12-27 19:56:14 +0100 |
| commit | 07a966e476052a6ffb00333800be62b0178d018d (patch) | |
| tree | b8d4f41b79ce52d7417e534dbcabbb103fe6276e /src/map.c | |
| parent | 92def83d88b81aab0cd08e44759b8b8d6354b7c3 (diff) | |
wall2
Diffstat (limited to 'src/map.c')
| -rw-r--r-- | src/map.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -224,7 +224,7 @@ void create_empty_map() { } for (int x = 0; x < MAP_SIZE_X; x++) { - map_to_load.objects[x] = (object){.active = true, .position = (vec3f){x, 0, 0}, .size = (vec3f){1,1,1}, .type = OBJECT_METAL_WALL_FRONT}; + map_to_load.objects[x] = (object){.active = true, .position = (vec3f){x, 0, 0}, .size = (vec3f){1,1,1}, .type = OBJECT_METAL_WALL}; } map_to_load.light_emitters[0] = (light_emitter){.brightness = 1.0f, .position = (vec3f){0, 0, 10}, .range = 20.0f, .active = true}; |
