From 1a00dd2342292e545d3aa26c2c0eadc80caedf5c Mon Sep 17 00:00:00 2001 From: tslil clingman <> Date: Tue, 12 Oct 2021 11:35:17 -0400 Subject: 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. --- src/main.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.zig') 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, }; -- cgit v1.3.1