X-Git-Url: http://winboard.nl/cgi-bin?p=bonanza.git;a=blobdiff_plain;f=io.c;h=a310a1798a35a2ca71ab943119d45efffcb4ffc2;hp=14f841efc2c7bbdccdea4b61404e744c9a5ccebf;hb=a443e15a4089569770ff5bf4ed543c2c6199a900;hpb=18b507e1b20fc6c32ee50f00fb910a59110c1a1d diff --git a/io.c b/io.c index 14f841e..a310a17 100644 --- a/io.c +++ b/io.c @@ -223,7 +223,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 ); } }