[BACK]Return to main.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / games / phantasia

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/games/phantasia/main.c between version 1.16 and 1.17

version 1.16, 2006/05/13 22:29:53 version 1.17, 2008/08/08 16:10:47
Line 995  playinit()
Line 995  playinit()
         signal(SIGPIPE, ill_sig);          signal(SIGPIPE, ill_sig);
 #endif  #endif
   
         initscr();              /* turn on curses */          if (!initscr()) {       /* turn on curses */
                   fprintf(stderr, "couldn't initialize screen\n");
                   exit (0);
           }
         noecho();               /* do not echo input */          noecho();               /* do not echo input */
         cbreak();               /* do not process erase, kill */          cbreak();               /* do not process erase, kill */
         clear();          clear();

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17

CVSweb <webmaster@jp.NetBSD.org>