diff options
Diffstat (limited to 'games/connect4/files/patch-ac')
-rw-r--r-- | games/connect4/files/patch-ac | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/games/connect4/files/patch-ac b/games/connect4/files/patch-ac new file mode 100644 index 000000000000..c9fa9c17aa62 --- /dev/null +++ b/games/connect4/files/patch-ac @@ -0,0 +1,23 @@ +*** screen.c.orig Tue Apr 15 22:06:03 1997 +--- screen.c Tue Apr 15 22:16:30 1997 +*************** +*** 1,3 **** +--- 1,8 ---- ++ /* ++ * Patched by Joel Sutton, 15th April 1997 ++ * Added endwin to tidy things up as per usenet posted patch. ++ */ ++ + #include <stdio.h> + #include <curses.h> + #include "c4.h" +*************** +*** 116,121 **** +--- 121,127 ---- + refresh(); + nocrmode(); + echo(); ++ endwin(); + } + + |