diff --git a/card.c b/card.c index 1c417be..f70df15 100644 --- a/card.c +++ b/card.c @@ -14,6 +14,10 @@ void draw_card(Card *c, Texture2D *cards_texture, int index) { Color color = index == 1 ? BLACK : BRICKRED; + if (c->selected) { + DrawRectangleRec((Rectangle) { c->position.x - 6, c->position.y - 6, card_size.x + 12, card_size.y + 12 }, BLUE); + } + if (c->visible) { DrawTexturePro( *cards_texture, @@ -27,9 +31,6 @@ void draw_card(Card *c, Texture2D *cards_texture, int index) { DrawRectangleRec((Rectangle) { c->position.x, c->position.y, card_size.x, card_size.y }, color); } - if (c->selected) { - DrawCircle(c->position.x + 10, c->position.y + 10, 10, BLUE); - } } bool point_within_card(Card *c, Vector2 point) {