aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--io.c14
-rw-r--r--main.c1
2 files changed, 8 insertions, 7 deletions
diff --git a/io.c b/io.c
index 6fd6d89..180ecc5 100644
--- a/io.c
+++ b/io.c
@@ -63,9 +63,9 @@ int c;
void io_printname(int x, int y, int era, int card)
{
- mvprintw(y, x, "# ");
+ mvprintw(y, x, "# ");
attron(COLOR_PAIR(gettypecolor(cards_gettype(era, card))));
- printw("%-24s", cards_getname(era, card));
+ printw("%-23s", cards_getname(era, card));
attrset(A_NORMAL);
printw(" #");
}
@@ -99,19 +99,19 @@ void io_printcard(int x, int y, int era, int card)
if(coupons[1] || coupons[3])
{ //print the coupons!
mvprintw(y++, x, "# Coupon for: #");
- if(coupons[1] != 0)
+ if(coupons[1])
io_printname(x, y++, coupons[0], coupons[1]);
- if(coupons[3] != 0)
+ if(coupons[3])
io_printname(x, y++, coupons[2], coupons[3]);
}
coupons = cards_getcouponed(era, card);
- if(coupons[0] || coupons[2])
+ if(coupons[1] || coupons[3])
{ //print the coupons!
mvprintw(y++, x, "# Free if owned: #");
- if(coupons[0] != 0)
+ if(coupons[1])
io_printname(x, y++, coupons[0], coupons[1]);
- if(coupons[2] != 0)
+ if(coupons[3])
io_printname(x, y++, coupons[2], coupons[3]);
}
diff --git a/main.c b/main.c
index 6b2aef5..5279407 100644
--- a/main.c
+++ b/main.c
@@ -19,6 +19,7 @@ main()
io_printcard(0, 6, 2, 14);
io_printcard(0, 20, 2, 3);
io_printcard(31, 0, 1, 12);
+ io_printcard(31, 20, 1, 20);
io_getkey();
halt();
}
bgstack15