From 7daad56f2ec6185fd0b1f0ca20f31a874bd2fc69 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Sat, 1 Jun 2013 19:56:17 +0200 Subject: [PATCH] Do not always start Makruk & ASEAN as setup position All engines by now should know the start position by themselves, and considering it a setup poition would interfere with the possibility for an engine to load the GUI with the aid of a setup command when it wants to play a Makruk variant (such as Cambodian or Ai-Wok) with legality testing off. --- backend.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/backend.c b/backend.c index f6bbefb..efe3b0e 100644 --- a/backend.c +++ b/backend.c @@ -5909,13 +5909,11 @@ InitPosition (int redraw) case VariantMakruk: pieces = makrukArray; nrCastlingRights = 0; - startedFromSetupPosition = TRUE; SetCharTable(pieceToChar, "PN.R.M....SKpn.r.m....sk"); break; case VariantASEAN: pieces = aseanArray; nrCastlingRights = 0; - startedFromSetupPosition = TRUE; SetCharTable(pieceToChar, "PN.R.Q....BKpn.r.q....bk"); break; case VariantTwoKings: -- 1.7.0.4