From ca0adbd81304536686222c65e7a89857bc67234b Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Tue, 22 Mar 2016 00:13:09 +0100 Subject: [PATCH] Add a SCORE_NONE. --- src/hashprobe.proto | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/hashprobe.proto b/src/hashprobe.proto index dfd16fdc..bb34806d 100644 --- a/src/hashprobe.proto +++ b/src/hashprobe.proto @@ -33,8 +33,9 @@ message HashProbeMove { } message HashProbeScore { enum ScoreType { - SCORE_CP = 0; - SCORE_MATE = 1; + SCORE_NONE = 0; + SCORE_CP = 1; + SCORE_MATE = 2; } ScoreType score_type = 1; int32 score_cp = 2; -- 2.39.2