From 93c28220b231b606325e8353b7c5eaba5ac78eef Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Sun, 29 Aug 2010 21:07:12 +0200 Subject: [PATCH] Fix JAWS bug saying side to move in ICS play This was done the wrong way around. --- winboard/jaws.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) 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); -- 1.7.0.4