From: H.G. Muller Date: Sun, 28 Oct 2012 20:39:19 +0000 (+0100) Subject: Fix WinBoard compile error on enum PEN X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=fbefb9f0b24c20920d7ac2ddf8d2503de9365821;p=xboard.git Fix WinBoard compile error on enum PEN --- 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 {