summaryrefslogtreecommitdiff
path: root/games/connect4/files/patch-ac
blob: c9fa9c17aa628c82ce2a7e919fb9f0c922deb821 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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();
  }