diff options
author | Nathan Vance <nathav63@gmail.com> | 2015-02-24 15:24:39 -0500 |
---|---|---|
committer | Nathan Vance <nathav63@gmail.com> | 2015-02-24 15:24:39 -0500 |
commit | 952244e7b184bf88122742ad75b884d1eb97eae5 (patch) | |
tree | 0ada6a0b2b200b9e4af7f0c745e25c9fd42b3f3c /view.c | |
parent | Added more support for idefinites, but has major bugs! (diff) | |
download | 7w-952244e7b184bf88122742ad75b884d1eb97eae5.tar.gz 7w-952244e7b184bf88122742ad75b884d1eb97eae5.tar.bz2 7w-952244e7b184bf88122742ad75b884d1eb97eae5.zip |
Added messages, fixed indefinites
Diffstat (limited to 'view.c')
-rw-r--r-- | view.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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) |