From 155a3c5f91c7a3bd89febfeb9927478961f5ee28 Mon Sep 17 00:00:00 2001 From: scratko Date: Sun, 7 Apr 2024 22:40:47 +0300 Subject: Tracking coins eaten The initialization of ncurses parameters and ghosts was put into functions. The order of movements has been changed: now pacman moves first. Accounting for eaten coins. Correct coin erasure. --- queue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'queue.c') diff --git a/queue.c b/queue.c index dd3dc1b..9e4d01e 100644 --- a/queue.c +++ b/queue.c @@ -43,7 +43,7 @@ int equal_points(struct coordinates first_point, return first_point.x == second_point.x && first_point.y == second_point.y; } -int is_consist_point(const struct queue *q, struct coordinates target_point) +int queue_consists_point(const struct queue *q, struct coordinates target_point) { enum { false, true }; struct item *tmp_item = q->first; -- cgit v1.2.3