diff options
| author | tslil clingman <> | 2021-09-22 23:12:19 -0400 |
|---|---|---|
| committer | tslil clingman <> | 2021-09-22 23:13:34 -0400 |
| commit | 48f51653ae90bdabb5bb738a5c78cd9a53f498a9 (patch) | |
| tree | e52938ae5f9d61cfe4be6d993d319d277ad7202b /src/main.zig | |
| parent | d932cb0a1fd0235c8f298dd7f3acbf2864338903 (diff) | |
There was really no reason to use a BoundedArray instead of an array
Diffstat (limited to 'src/main.zig')
| -rw-r--r-- | src/main.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.zig b/src/main.zig index 3c95d20..2f3c189 100644 --- a/src/main.zig +++ b/src/main.zig @@ -34,7 +34,7 @@ pub fn main() !void { // Setup player and map //-------------------------------------------------------------------------- - var player = try raycast.Player(constants.PlaneWidth, constants.PlaneHeight).new( + var player = raycast.Player(constants.PlaneWidth, constants.PlaneHeight).new( 7, // x coord 1.5, // y coord PI / 2.0, // angle |
