diff options
| author | tslil clingman <> | 2021-09-20 20:54:57 -0400 |
|---|---|---|
| committer | tslil clingman <> | 2021-09-20 20:58:03 -0400 |
| commit | 354ac874c570eda2d8d17e1709f8e40d7a79f623 (patch) | |
| tree | 0b986cdde015a210df2a9f80f172d7622da93ab4 /src/constants.zig | |
| parent | ff054cad993bb89a2179358a71681ce45a9cccf3 (diff) | |
Render walls by pixels, instead of using hard. accel. sprites
Diffstat (limited to 'src/constants.zig')
| -rw-r--r-- | src/constants.zig | 4 |
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; |
