From 6af61ce31b024cb65ba65e3b22586bc12839915d Mon Sep 17 00:00:00 2001 From: H.G.Muller Date: Fri, 13 Jan 2017 13:22:27 +0100 Subject: [PATCH] Allow Make Persistent on engine loaded from recent-engine menu This method of loading an engine from the list was not yet recorded in the currentEngine[] array. --- backend.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/backend.c b/backend.c index 4f1aad8..47b443b 100644 --- a/backend.c +++ b/backend.c @@ -11449,6 +11449,7 @@ RecentEngineEvent (int nr) if(mnemonic[n]) { // if somehow the engine with the selected nickname is no longer found in the list, we skip ReplaceEngine(&first, 0); FloatToFront(&appData.recentEngineList, command[n]); + ASSIGN(currentEngine[0], command[n]); } } -- 1.7.0.4