diff --git a/games/bsdgames/Makefile b/games/bsdgames/Makefile index 0fbbca4a3e0d..cd60df538642 100644 --- a/games/bsdgames/Makefile +++ b/games/bsdgames/Makefile @@ -1,6 +1,7 @@ PORTNAME= bsdgames PORTVERSION= 0.75 DISTVERSIONPREFIX= v +PORTREVISION= 1 PORTEPOCH= 2 CATEGORIES= games diff --git a/games/bsdgames/files/patch-atc_update.c b/games/bsdgames/files/patch-atc_update.c new file mode 100644 index 000000000000..3431b036e161 --- /dev/null +++ b/games/bsdgames/files/patch-atc_update.c @@ -0,0 +1,11 @@ +--- atc/update.c.orig 2020-02-26 16:22:47 UTC ++++ atc/update.c +@@ -284,7 +284,7 @@ next_plane(void) + break; + } + } while (found && last_plane != start_plane); +- if (last_plane == start_plane) ++ if (found) + return (-1); + return (last_plane); + }