From 2543728902dcc40d60ad794e322fbb1aafadd3e0 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Thu, 19 Jan 2012 23:01:20 +0100 Subject: [PATCH] Fix fix of switch to mono-mode The previous fix had == in stead of != for testing if mono-mode had changed. --- xboard.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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; -- 1.7.0.4