diff options
author | scratko <m@scratko.xyz> | 2024-04-14 21:18:36 +0300 |
---|---|---|
committer | scratko <m@scratko.xyz> | 2024-04-14 21:18:36 +0300 |
commit | 0cf5dfed3e492608d044a5fc90c1815fab506fd7 (patch) | |
tree | d1efa942e89ab4f064324fcee4c623173abc5298 /Makefile | |
parent | 91583d5699503e981105beecc51d37b59dc1842e (diff) | |
download | pacman-0cf5dfed3e492608d044a5fc90c1815fab506fd7.tar.gz pacman-0cf5dfed3e492608d044a5fc90c1815fab506fd7.tar.bz2 pacman-0cf5dfed3e492608d044a5fc90c1815fab506fd7.zip |
Capture and liberation of ghosts
Fixed coordinate in field_has_coin.
Added marks on the field for the liberation zone (1 in front of #).
Prison parameters for the ghost are set.
Fixed condition in BFS search (additionally exclude the current point in the
loop, dx == 0 && dy == 0).
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ SRCMODULES = field.c ghosts.c pac.c queue.c pacman.c OBJMODULES = $(SRCMODULES:.c=.o) CC = gcc -CFLAGS = -Wall -g -c +CFLAGS = -Wall -g -c -D DEBUG LIBS = -lncurses -lm |