gomoku debug regression

2014-12-07 Thread Jonas 'Sortie' Termansen
Hi, I noticed revision 1.25 of games/gomoku/main.c was faulty: if (!debug) -#ifdef SVR4 - srand(time(0)); -#endif if (interactive) cursinit(); /* initialize curses */ The if (!debug) line should've been removed as well. Now curses isn't

Re: gomoku debug regression

2014-12-07 Thread Jonas 'Sortie' Termansen
I just realized SVR4 wasn't defined in the first place, so this isn't a regression. It was always broken.