From 6cdb4afe21c8d0eb740a6a22a02a0adf922fddfc Mon Sep 17 00:00:00 2001 From: Yann Dirson Date: Sat, 19 Oct 2013 21:44:25 +0200 Subject: [PATCH] Drop NOT_CURSES occurences from makepattern. Why on earth are we supposing that pat2inc would run in Curses mode one day ? --- gnushogi/makepattern.c | 20 ++++++++------------ 1 files changed, 8 insertions(+), 12 deletions(-) diff --git a/gnushogi/makepattern.c b/gnushogi/makepattern.c index 3145967..9b57925 100644 --- a/gnushogi/makepattern.c +++ b/gnushogi/makepattern.c @@ -226,20 +226,16 @@ ReadOpeningSequences (short *pindex) pattern_data[(*pindex)++] = END_OF_PATTERNS; pattern_data[(*pindex)++] = END_OF_SEQUENCES; - if (NOT_CURSES) - { - sprintf(s, - "Pattern: %d bytes for %d sequences with %d patterns.\n", - *pindex, max_opening_sequence, max_pattern); - ShowMessage(s); - } - fclose(fd); - } - else if (NOT_CURSES) - { - sprintf(s, "no pattern file '%s'", patternfile); + sprintf(s, + "Pattern: %d bytes for %d sequences with %d patterns.\n", + *pindex, max_opening_sequence, max_pattern); ShowMessage(s); + + fclose(fd); } + + sprintf(s, "no pattern file '%s'", patternfile); + ShowMessage(s); } -- 1.7.0.4