mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 00:33:09 +00:00
Fix a comment in TTEntry::save
Comment was slightly incorrect. No functional change.
This commit is contained in:
parent
ca38358574
commit
dc3508d157
1 changed files with 1 additions and 1 deletions
2
src/tt.h
2
src/tt.h
|
@ -50,7 +50,7 @@ struct TTEntry {
|
||||||
// Don't overwrite more valuable entries
|
// Don't overwrite more valuable entries
|
||||||
if ( (k >> 48) != key16
|
if ( (k >> 48) != key16
|
||||||
|| d > depth8 - 2
|
|| d > depth8 - 2
|
||||||
/* || g != (genBound8 & 0xFC) // Any matching keys are already refreshed by probe() */
|
/* || g != (genBound8 & 0xFC) // Matching non-zero keys are already refreshed by probe() */
|
||||||
|| b == BOUND_EXACT)
|
|| b == BOUND_EXACT)
|
||||||
{
|
{
|
||||||
key16 = (uint16_t)(k >> 48);
|
key16 = (uint16_t)(k >> 48);
|
||||||
|
|
Loading…
Add table
Reference in a new issue