Fix error Engine Output text highlighting
authorH.G. Muller <h.g.muller@hccnet.nl>
Sun, 2 Mar 2014 17:53:17 +0000 (18:53 +0100)
committerH.G. Muller <h.g.muller@hccnet.nl>
Sun, 2 Mar 2014 18:04:48 +0000 (19:04 +0100)
In wengineoutput.c higeTextStart and End where decalred both static and
extern, which somecompilers justifiably don't like.

winboard/wengineoutput.c

index d3a673f..8cf4fc6 100644 (file)
@@ -225,7 +225,8 @@ void ResizeWindowControls( int mode )
     InvalidateRect( GetDlgItem(hDlg,IDC_EngineMemo2), NULL, FALSE );\r
 }\r
 \r
-static int currentPV, highTextStart[2], highTextEnd[2];\r
+static int currentPV;\r
+int highTextStart[2], highTextEnd[2];\r
 extern RECT boardRect;\r
 \r
 VOID\r