From: H.G. Muller Date: Sun, 29 Aug 2010 19:07:12 +0000 (+0200) Subject: Fix JAWS bug saying side to move in ICS play X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=93c28220b231b606325e8353b7c5eaba5ac78eef;hp=6fafc3a57e2929b3cd43211b514cdc8eb7b833db;p=xboard.git Fix JAWS bug saying side to move in ICS play This was done the wrong way around. --- diff --git a/winboard/jaws.c b/winboard/jaws.c index 56c7411..15be5ee 100644 --- a/winboard/jaws.c +++ b/winboard/jaws.c @@ -894,11 +894,11 @@ SayAllBoard() VOID SayWhosTurn() { - if(gameMode == MachinePlaysBlack || gameMode == IcsPlayingBlack) { + if(gameMode == MachinePlaysBlack || gameMode == IcsPlayingWhite) { if(WhiteOnMove(currentMove)) SayString("It is your turn", FALSE); else SayString("It is your opponents turn", FALSE); - } else if(gameMode == MachinePlaysWhite || gameMode == IcsPlayingWhite) { + } else if(gameMode == MachinePlaysWhite || gameMode == IcsPlayingBlack) { if(WhiteOnMove(currentMove)) SayString("It is your opponents turn", FALSE); else SayString("It is your turn", FALSE);