aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index fff4b78..99feef0 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,4 +1,5 @@
#include <stdio.h>
+#include <stdlib.h>
#include <curses.h>
#include "board.h"
@@ -47,7 +48,7 @@ int main() {
initialize_board(board);
- Tile tile = { "FRCR", 'R' };
+ Tile tile = { "FRCR", 'R', 0 };
place_tile(tile, translate_coordinate(24), board, 1);
/* main loop */
@@ -69,7 +70,7 @@ int main() {
box(input_box, 0, 0);
mvwaddstr(input_box, 0, 0, "Enter tile:");
wrefresh(input_box);
- wgetstr(input_win, tile.edges);
+ wgetnstr(input_win, tile.edges, 5);
wclear(input_win);
if (tile.edges[0] == 'q') break;