From 9000c2e9f95438e53c8b1e0110a88db7b49d8077 Mon Sep 17 00:00:00 2001 From: tslil clingman <> Date: Mon, 20 Sep 2021 20:54:57 -0400 Subject: Render by writing pixels, instead of using hard. accel. sprites --- src/constants.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/constants.zig') diff --git a/src/constants.zig b/src/constants.zig index 1ca0c4f..d363af5 100644 --- a/src/constants.zig +++ b/src/constants.zig @@ -18,8 +18,8 @@ pub const ScreenWidth: f32 = 1024; pub const ScreenHeight: f32 = 768; -pub const PlaneWidth = 320; -pub const PlaneHeight = 240; +pub const PlaneWidth = 640; +pub const PlaneHeight = 480; pub const HFact = ScreenWidth / PlaneWidth; pub const VFact = ScreenHeight / PlaneHeight; -- cgit v1.3.1