diff options
| author | tslil clingman <> | 2021-10-12 11:35:17 -0400 |
|---|---|---|
| committer | tslil clingman <> | 2021-10-12 11:35:17 -0400 |
| commit | 1a00dd2342292e545d3aa26c2c0eadc80caedf5c (patch) | |
| tree | 0ca1072c1be70171e36cc2c6b50b21f57fa72229 /src/main.zig | |
| parent | b21e399bd09577d2eef78d81c0db642ba4c390b7 (diff) | |
No need to recalculate the index inside each loop
Here's hoping Zig is smart enough (TM) to constant-ify all of these
@floatToInt(type, PlaneXXX) values.
Diffstat (limited to 'src/main.zig')
| -rw-r--r-- | src/main.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.zig b/src/main.zig index 1211529..01a021c 100644 --- a/src/main.zig +++ b/src/main.zig @@ -71,7 +71,7 @@ pub fn main() !void { .lower_texture = 1, .upper_texture = 1, .floor_texture = 1, - .ceiling_texture = 1, + .ceiling_texture = 2, .draw_down = true, }; |
