projects
/
xboard.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
5860353
)
Fix node count range
author
H.G. Muller
<h.g.muller@hccnet.nl>
Sun, 15 Sep 2013 17:28:54 +0000 (19:28 +0200)
committer
H.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
patch
|
blob
|
history
diff --git
a/frontend.h
b/frontend.h
index
5ac3cf8
..
bcf2ad0
100644
(file)
--- 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;