mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
Fix incorrect method call
Copypasta oops, previous commit at fault.
This commit is contained in:
parent
5cfaf7eecd
commit
44c8e772a3
2 changed files with 3 additions and 3 deletions
|
@ -689,13 +689,13 @@ public static class MethodFinder
|
|||
Debug.Assert(rand3 >> 15 == 0);
|
||||
rand1 <<= 16;
|
||||
rand3 <<= 16;
|
||||
var attempt1 = method.RecoverLower16Bits(rand1, rand3);
|
||||
var attempt1 = method.RecoverLower16BitsGap(rand1, rand3);
|
||||
foreach (var z in attempt1)
|
||||
{
|
||||
yield return z;
|
||||
yield return z ^ 0x80000000; // sister bitflip
|
||||
}
|
||||
var attempt2 = method.RecoverLower16Bits(rand1, rand3 ^ 0x80000000);
|
||||
var attempt2 = method.RecoverLower16BitsGap(rand1, rand3 ^ 0x80000000);
|
||||
foreach (var z in attempt2)
|
||||
{
|
||||
yield return z;
|
||||
|
|
Loading…
Reference in a new issue