projects
/
xboard.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
9f42d7d
)
Fix error Engine Output text highlighting
author
H.G. Muller
<h.g.muller@hccnet.nl>
Sun, 2 Mar 2014 17:53:17 +0000 (18:53 +0100)
committer
H.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
patch
|
blob
|
history
diff --git
a/winboard/wengineoutput.c
b/winboard/wengineoutput.c
index
d3a673f
..
8cf4fc6
100644
(file)
--- a/
winboard/wengineoutput.c
+++ b/
winboard/wengineoutput.c
@@
-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