Slightly smaller layout

This commit is contained in:
Bill Rossi 2025-02-22 13:58:22 -05:00
parent 26f7ab5653
commit 83b1ae2cb9

2
card.c
View File

@ -125,7 +125,7 @@ void add_to_hand(Hand *h, Card *c) {
c->move.destination.y = h->position.y;
break;
case HAND_DISPLAY_SCORED:
c->move.destination.x = h->position.x + (c->order * (CARD_WIDTH - 10));
c->move.destination.x = h->position.x + (c->order * (CARD_WIDTH - 30));
c->move.destination.y = h->position.y;
break;
}