Fix node count range
authorH.G. Muller <h.g.muller@hccnet.nl>
Sun, 15 Sep 2013 17:28:54 +0000 (19:28 +0200)
committerH.G. Muller <h.g.muller@hccnet.nl>
Sun, 15 Sep 2013 17:28:54 +0000 (19:28 +0200)
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

index 5ac3cf8..bcf2ad0 100644 (file)
@@ -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;