Skip to content

Commit

Permalink
Fix node count range
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
HGMuller committed Sep 15, 2013
1 parent 5860353 commit c868c60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit c868c60

Please sign in to comment.