From 36af1b5f5a0968f9a7b873fcca916c8f8f3ab587 Mon Sep 17 00:00:00 2001 From: H.G.Muller Date: Mon, 17 Jun 2019 13:59:04 +0200 Subject: [PATCH] Also do not nice priority of a remote shell When the engine is really running elsewhere the program used to communicate it should not have lowered priority. --- backend.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/backend.c b/backend.c index a3220c2..ba9b49b 100644 --- a/backend.c +++ b/backend.c @@ -11195,7 +11195,7 @@ StartChessProgram (ChessProgramState *cps) snprintf(buf, sizeof(buf), "%s %s -l %s %s", appData.remoteShell, cps->host, appData.remoteUser, cps->program); } - err = StartChildProcess(buf, "", &cps->pr, priority); + err = StartChildProcess(buf, "", &cps->pr, 0); } if (err != 0) { -- 1.7.0.4