Fix fix of switch to mono-mode
authorH.G. Muller <h.g.muller@hccnet.nl>
Thu, 19 Jan 2012 22:01:20 +0000 (23:01 +0100)
committerH.G. Muller <h.g.muller@hccnet.nl>
Tue, 7 Feb 2012 22:12:19 +0000 (23:12 +0100)
The previous fix had == in stead of != for testing if mono-mode had changed.

xboard.c

index f05027d..5384720 100644 (file)
--- 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;