IMMORTAL: Remove unnecessary commented line

This commit is contained in:
Quote58 2023-01-18 18:34:18 -05:00 committed by Eugene Sandulenko
parent 55590df288
commit 98247630c2

View File

@ -250,8 +250,7 @@ void ImmortalEngine::appendList(uint16 codeW, uint16 k, uint16 &hash, uint16 &fi
link = hash >> 1;
ptk[prev] = (link << 8) | (ptk[prev] & kMaskLow);
//start[prev] = ((link >> 4) & kMaskLast) | start[prev]; // Yikes this statement is gross
ptk[prev] = (link << 8) | (ptk[prev] & kMaskLow);
start[prev] |= (link >> 4) & kMaskLast;
found = true;
}
@ -260,29 +259,3 @@ void ImmortalEngine::appendList(uint16 codeW, uint16 k, uint16 &hash, uint16 &fi
}
} // namespace immortal