X-Git-Url: http://winboard.nl/cgi-bin?p=bonanza.git;a=blobdiff_plain;f=io.c;h=75f12bbc4f1d93a4da91d75c7beca483f3de4671;hp=c0595f1603b40065a129e011c833c379caaacd00;hb=cygwin;hpb=31daebfc1031441aa180e3af2e547a8cd2b92c32 diff --git a/io.c b/io.c index c0595f1..75f12bb 100644 --- a/io.c +++ b/io.c @@ -233,7 +233,12 @@ show_prompt( void ) else { Out( "Black Suspend> " ); } } else if ( root_turn ) { Out( "White %d> ", record_game.moves+1 ); } - else { Out( "Black %d> ", record_game.moves+1 ); } +#ifdef XBOARD +# define SIGN "#" +#else +# define SIGN +#endif + else { Out( SIGN "Black %d> ", record_game.moves+1 ); } }