From 952244e7b184bf88122742ad75b884d1eb97eae5 Mon Sep 17 00:00:00 2001 From: Nathan Vance Date: Tue, 24 Feb 2015 15:24:39 -0500 Subject: Added messages, fixed indefinites --- view.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'view.c') diff --git a/view.c b/view.c index 68337b4..3061435 100644 --- a/view.c +++ b/view.c @@ -7,6 +7,7 @@ void io_printhand(int x, int y, int player, int cursor); void io_clearscreen(); int data_numplayers(); void io_printhand(int x, int y, int player, int cursor); +void printmessage(int x, int y, int width); void view_printwonders(int focus, int cursor, int player) { @@ -22,6 +23,7 @@ void view_printwonders(int focus, int cursor, int player) print_wonder(34, 0, p, cursor); y = print_wondersmall(x, y, p, focus == p, dir); } + printmessage(0, y+2, 35); } void view_refresh(int focus, int cursor, int player) -- cgit