From 0019ad647b7ee674e96871f35a19ffe4e38f54b3 Mon Sep 17 00:00:00 2001 From: Murilo Pereira Date: Sun, 6 Feb 2011 21:27:39 -0200 Subject: [PATCH] Not using this function. --- lib/stack.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/stack.c b/lib/stack.c index 36e29c1..7940a45 100644 --- a/lib/stack.c +++ b/lib/stack.c @@ -10,11 +10,6 @@ static bool maneuvre_stack(struct stack *stack) { return(stack->card->frame->start_y >= MANEUVRE_STACKS_STARTING_Y); } -static bool waste_pile_stack(struct stack *stack) { - return((stack->card->frame->start_x == WASTE_PILE_STARTING_X) && - (stack->card->frame->start_y == WASTE_PILE_STARTING_Y)); -} - static void refresh_card_coordinates(struct stack *origin, struct stack *destination) { origin->card->frame->start_x = destination->card->frame->start_x; origin->card->frame->start_y = destination->card->frame->start_y;