From c868c606c9f68e432e281003c221584469afe56b Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Sun, 15 Sep 2013 19:28:54 +0200 Subject: [PATCH] Fix node count range The node count was still clipped to 32 bit because one of the structs it passes through (FrontEndProgramStats) had the nodes field declared as an unsigned long. --- frontend.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/frontend.h b/frontend.h index 5ac3cf8..bcf2ad0 100644 --- a/frontend.h +++ b/frontend.h @@ -215,7 +215,7 @@ void EnableNamedMenuItem P((char *menuRef, int state)); typedef struct FrontEndProgramStats_TAG { int which; int depth; - unsigned long nodes; + u64 nodes; int score; int time; char * pv; -- 1.7.0.4