From b7a79fc5f838b5553d9d48ac26afad1c21111e95 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Wed, 30 Sep 2009 20:47:00 -0700 Subject: [PATCH] wrong default value for engineDebugOutput the new default is now 1 --- xboard.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) 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 +} -- 1.7.0.4