summaryrefslogtreecommitdiff
path: root/src/camera.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/camera.rs')
-rw-r--r--src/camera.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/camera.rs b/src/camera.rs
index 3ae33b4..e77da40 100644
--- a/src/camera.rs
+++ b/src/camera.rs
@@ -175,7 +175,7 @@ impl Camera {
let projection_matrix = Matrix4::new(
self.inverse_aspect_ratio * self.zoom, 0.0, 0.0, 0.0,
0.0, self.zoom, 0.0, 0.0,
- 0.0, 0.0, 0.0, 0.0,
+ 0.0, 0.0, 1.0 / 256.0, 0.0,
0.0, 0.0, 0.0, 1.0
);