aboutsummaryrefslogtreecommitdiff
path: root/view.c
diff options
context:
space:
mode:
authorNathan Vance <nathav63@gmail.com>2015-02-24 15:24:39 -0500
committerNathan Vance <nathav63@gmail.com>2015-02-24 15:24:39 -0500
commit952244e7b184bf88122742ad75b884d1eb97eae5 (patch)
tree0ada6a0b2b200b9e4af7f0c745e25c9fd42b3f3c /view.c
parentAdded more support for idefinites, but has major bugs! (diff)
download7w-952244e7b184bf88122742ad75b884d1eb97eae5.tar.gz
7w-952244e7b184bf88122742ad75b884d1eb97eae5.tar.bz2
7w-952244e7b184bf88122742ad75b884d1eb97eae5.zip
Added messages, fixed indefinites
Diffstat (limited to 'view.c')
-rw-r--r--view.c2
1 files changed, 2 insertions, 0 deletions
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)
bgstack15