aboutsummaryrefslogtreecommitdiff
path: root/src/constants.zig
diff options
context:
space:
mode:
authortslil clingman <>2021-09-20 20:54:57 -0400
committertslil clingman <>2021-09-20 20:57:37 -0400
commit9000c2e9f95438e53c8b1e0110a88db7b49d8077 (patch)
tree0b986cdde015a210df2a9f80f172d7622da93ab4 /src/constants.zig
parentff054cad993bb89a2179358a71681ce45a9cccf3 (diff)
Render by writing pixels, instead of using hard. accel. spritesrender_to_pixels
Diffstat (limited to 'src/constants.zig')
-rw-r--r--src/constants.zig4
1 files changed, 2 insertions, 2 deletions
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;