From: Arun Persaud Date: Thu, 1 Oct 2009 03:47:00 +0000 (-0700) Subject: wrong default value for engineDebugOutput X-Git-Tag: v4.4.1.20091019~68 X-Git-Url: http://winboard.nl/cgi-bin?p=xboard.git;a=commitdiff_plain;h=b7a79fc5f838b5553d9d48ac26afad1c21111e95 wrong default value for engineDebugOutput the new default is now 1 --- diff --git a/xboard.c b/xboard.c index c6ef883..0e8b132 100644 --- a/xboard.c +++ b/xboard.c @@ -1347,7 +1347,7 @@ XtResource clientResources[] = { XtRImmediate, (XtPointer) "xboard.debug"}, { "engineDebugOutput", "engineDebugOutput", XtRInt, sizeof(int), XtOffset(AppDataPtr, engineComments), - XtRImmediate, (XtPointer) 0}, + XtRImmediate, (XtPointer) 1}, { "noGUI", "noGUI", XtRBoolean, sizeof(Boolean), XtOffset(AppDataPtr, noGUI), XtRImmediate, (XtPointer) 0}, @@ -9490,4 +9490,4 @@ SetProgramStats( FrontEndProgramStats * stats ) // [HR] TODO // [HGM] done, but perhaps backend should call this directly? EngineOutputUpdate( stats ); -} \ No newline at end of file +}