From: H.G. Muller Date: Sun, 15 Sep 2013 17:28:54 +0000 (+0200) Subject: Fix node count range X-Git-Url: http://winboard.nl/cgi-bin?p=xboard.git;a=commitdiff_plain;h=c868c606c9f68e432e281003c221584469afe56b 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. --- 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;