From: H.G. Muller Date: Thu, 19 Jan 2012 22:01:20 +0000 (+0100) Subject: Fix fix of switch to mono-mode X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=2543728902dcc40d60ad794e322fbb1aafadd3e0;p=xboard.git Fix fix of switch to mono-mode The previous fix had == in stead of != for testing if mono-mode had changed. --- diff --git a/xboard.c b/xboard.c index f05027d..5384720 100644 --- a/xboard.c +++ b/xboard.c @@ -1817,7 +1817,7 @@ InitDrawingSizes (BoardSize boardSize, int flags) } } #if HAVE_LIBXPM - if(appData.monoMode == oldMono) + if(appData.monoMode != oldMono) CreateAnimVars(); #endif oldMono = appData.monoMode;