From fbefb9f0b24c20920d7ac2ddf8d2503de9365821 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Sun, 28 Oct 2012 21:39:19 +0100 Subject: [PATCH] Fix WinBoard compile error on enum PEN --- winboard/wevalgraph.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/winboard/wevalgraph.c b/winboard/wevalgraph.c index e438916..5a6ca62 100644 --- a/winboard/wevalgraph.c +++ b/winboard/wevalgraph.c @@ -58,7 +58,7 @@ Boolean EvalGraphIsUp() } // [HGM] front-end, added as wrapper to avoid use of LineTo and MoveToEx in other routines (so they can be back-end) -void DrawSegment( int x, int y, int *lastX, int *lastY, enum PEN penType ) +void DrawSegment( int x, int y, int *lastX, int *lastY, int penType ) { POINT stPt; if(penType == PEN_NONE) MoveToEx( hdcPB, x, y, &stPt ); else { -- 1.7.0.4