From bc1a7524fd9f43f3509c1d73e29974453f6c45ea Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Thu, 23 Jun 2011 11:26:48 +0200 Subject: [PATCH 1/1] Add Absolute Analysis Scores in Genral Options dialog XB --- xboard.texi | 4 ++++ xoptions.c | 1 + 2 files changed, 5 insertions(+), 0 deletions(-) diff --git a/xboard.texi b/xboard.texi index e5c4abb..e8cfd3c 100644 --- a/xboard.texi +++ b/xboard.texi @@ -930,6 +930,10 @@ The @kbd{Ctrl-X} key is a keyboard equivalent. @cindex General Options, Menu Item The following items to set option values appear in the dialog summoned by the general Options menu item. +@itemx Absolute Analysis Scores +@cindex Absolute Analysis Scores, Menu Item +Controls if scores on the Engine Output window during analysis +will be printed from the white or the side-to-move point-of-view. @itemx Almost Always Queen @cindex Almost Always Queen, Menu Item If this option is on, 7th-rank pawns automatically change into diff --git a/xoptions.c b/xoptions.c index 575fc32..db1dfe6 100644 --- a/xoptions.c +++ b/xoptions.c @@ -365,6 +365,7 @@ int GeneralOptionsOK(int n) } Option generalOptions[] = { +{ 0, 0, 0, NULL, (void*) &appData.whitePOV, "", NULL, CheckBox, N_("Absolute Analysis Scores") }, { 0, 0, 0, NULL, (void*) &appData.sweepSelect, "", NULL, CheckBox, N_("Almost Always Queen (Detour Under-Promote)") }, { 0, 0, 0, NULL, (void*) &appData.animateDragging, "", NULL, CheckBox, N_("Animate Dragging") }, { 0, 0, 0, NULL, (void*) &appData.animate, "", NULL, CheckBox, N_("Animate Moving") }, -- 1.7.0.4