- header[0] = NULLCHAR;
- if(gameMode == AnalyzeMode && (multi = MultiPV(&first)) >= 0) {
- snprintf(header, MSG_SIZ, "\t%s viewpoint\t\tfewer / Multi-PV setting = %d / more\n",
- appData.whitePOV || appData.scoreWhite ? "white" : "mover", first.option[multi].value);
- InsertIntoMemo( which, header, 0);
+ header[which][0] = NULLCHAR;
+ if(gameMode == AnalyzeMode) {
+ ChessProgramState *cps = (which ? &second : &first);
+ if((multi = MultiPV(cps)) >= 0) {
+ snprintf(header[which], MSG_SIZ, "\t%s viewpoint\t\tfewer / Multi-PV setting = %d / more\n",
+ appData.whitePOV || appData.scoreWhite ? "white" : "mover", cps->option[multi].value);
+ }
+ if(!which) snprintf(header[which]+strlen(header[which]), MSG_SIZ-strlen(header[which]), "%s", exclusionHeader);
+ InsertIntoMemo( which, header[which], 0);