X-Git-Url: http://winboard.nl/cgi-bin?p=gnushogi.git;a=blobdiff_plain;f=gnushogi%2Frawdsp.c;h=a37581349208f29a73f4a2306d08c67cad342119;hp=042ffd83919623da7bf11da4e7d495518e942d73;hb=0edbcf26d5dbe0e17ce09cfa473fb41f8ec255f3;hpb=5bbf9aa02385d257d9b9da6455dba600bda47812 diff --git a/gnushogi/rawdsp.c b/gnushogi/rawdsp.c index 042ffd8..a375813 100644 --- a/gnushogi/rawdsp.c +++ b/gnushogi/rawdsp.c @@ -65,7 +65,7 @@ void Raw_UpdateDisplay(short f, short t, short redraw, short isspec); void Raw_ClearScreen(void) { - if (!barebones && !XSHOGI) + if (!XSHOGI) printf("\n"); } @@ -73,7 +73,7 @@ Raw_ClearScreen(void) void Raw_ShowPrompt(void) { - if (!barebones && !XSHOGI) + if (!XSHOGI) fputs("\nYour move is? ", stdout); } @@ -87,7 +87,7 @@ Raw_ShowCurrentMove(short pnt, short f, short t) void Raw_ShowDepth(char ch) { - if (!barebones && !XSHOGI) + if (!XSHOGI) printf("Depth= %d%c \n", Sdepth, ch); } @@ -594,10 +594,10 @@ Raw_OutputMove(void) else if (root->score == (SCORE_LIMIT + 998)) printf("%s mates!\n", ColorStr[computer]); #ifdef VERYBUGGY - else if (!barebones && (root->score < -SCORE_LIMIT)) + else if (!XSHOGI && (root->score < -SCORE_LIMIT)) printf("%s has a forced mate in %d moves!\n", ColorStr[opponent], SCORE_LIMIT + 999 + root->score - 1); - else if (!barebones && (root->score > SCORE_LIMIT)) + else if (!XSHOGI && (root->score > SCORE_LIMIT)) printf("%s has a forced mate in %d moves!\n", ColorStr[computer], SCORE_LIMIT + 998 - root->score - 1); #endif /* VERYBUGGY */