diff options
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; |