diff options
author | HampusM <hampus@hampusmat.com> | 2021-12-31 15:13:41 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-12-31 15:13:41 +0100 |
commit | 256bb7928ed70af42395edeb0396b28ebb6d562c (patch) | |
tree | 3bbf58d854f48a7dcd058bfaab6da045c6e99b7c /src/maze.c | |
parent | 6efa28e3d66cc7629b8d85f293a0518c21a15f0a (diff) |
style: fix formatting
Diffstat (limited to 'src/maze.c')
-rw-r--r-- | src/maze.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -38,8 +38,7 @@ struct Maze maze_create(struct Dimensions dimens, char *wall) struct Dimensions full_dimens = { .width = dimens.width * 2 + 1, - .height = dimens.height * 2 + 1 - }; + .height = dimens.height * 2 + 1}; maze.full_dimens = full_dimens; |