From 83b1ae2cb975a428044f5df472086c26de94aec5 Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Sat, 22 Feb 2025 13:58:22 -0500 Subject: [PATCH] Slightly smaller layout --- card.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/card.c b/card.c index 5aba3ee..6bf9fa8 100644 --- a/card.c +++ b/card.c @@ -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; }