From 0ae1160dfc60098e128a3c7a6adb6b08d52a1510 Mon Sep 17 00:00:00 2001 From: "H.G. Muller" Date: Sun, 28 Oct 2012 18:19:23 +0100 Subject: [PATCH] Fix message in New Variant dialog Even in -ncp mode the message was referring to the 'current engine'. --- dialogs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dialogs.c b/dialogs.c index 773a3053..49f387f3 100644 --- a/dialogs.c +++ b/dialogs.c @@ -478,6 +478,7 @@ Pick (int n) void NewVariantProc () { + if(appData.noChessProgram) sprintf(warning, _("Only bughouse is not available in viewer mode")); else sprintf(warning, _("All variants not supported by first engine\n(currently %s) are disabled"), first.tidy); GenericPopUp(variantDescriptors, _("New Variant"), TransientDlg, BoardWindow, MODAL, 0); } -- 2.17.1