diff --git a/src/draw.c b/src/draw.c index f9f2d5c..73cfa37 100644 --- a/src/draw.c +++ b/src/draw.c @@ -13,9 +13,12 @@ static const char *card_values[13] = { }; void draw_greeting() { - mvprintw(10, 27, "Welcome to tty-solitaire."); - mvprintw(11, 8, "Move with \u2190\u2191\u2192\u2193 or hjkl. Use the space bar to mark and move cards."); - mvprintw(12, 19, "Press the space bar to play or q to quit."); + mvprintw(8, 26, "Welcome to tty-solitaire."); + mvprintw(10, 27, "Move with \u2190\u2191\u2192\u2193 or hjkl."); + mvprintw(11, 19, "Use the space bar to mark and move cards."); + mvprintw(12, 16, "After marking a card you can use m to increase "); + mvprintw(13, 17, "and n to decrease the number of marked cards."); + mvprintw(15, 19, "Press the space bar to play or q to quit."); } static void draw_value(struct card *card) { diff --git a/src/game.c b/src/game.c index 00b4880..b3cf06c 100644 --- a/src/game.c +++ b/src/game.c @@ -44,7 +44,7 @@ static int maneuvre_begin_x(int x) { static bool stock_stack(struct stack *stack) { return((stack->card->frame->begin_y == STOCK_BEGIN_Y) && - (stack->card->frame->begin_x == STOCK_BEGIN_X)); + (stack->card->frame->begin_x == STOCK_BEGIN_X)); } static bool waste_pile_stack(struct stack *stack) {