Compare commits

...

3 commits

Author SHA1 Message Date
Ottermandias
1ae7de26bf
Fix issue in SigScanner. (#2425)
Some checks are pending
Build Dalamud / Build on Windows (push) Waiting to run
Build Dalamud / Check API Compatibility (push) Blocked by required conditions
Build Dalamud / Deploy dalamud-distrib staging (push) Blocked by required conditions
Tag Build / Tag Build (push) Successful in 4s
2025-10-07 09:40:44 -07:00
bleatbot
1073227b83
Update ClientStructs (#2419)
Co-authored-by: github-actions[bot] <noreply@github.com>
2025-10-07 09:06:43 -07:00
bleatbot
11adffd700
Update Excel Schema (#2423)
Co-authored-by: github-actions[bot] <noreply@github.com>
2025-10-07 08:33:24 -07:00
3 changed files with 4 additions and 4 deletions

View file

@ -326,7 +326,7 @@ public class SigScanner : IDisposable, ISigScanner
}
/// <inheritdoc/>
public nint[] ScanAllText(string signature) => this.ScanAllText(signature, default).ToArray();
public nint[] ScanAllText(string signature) => this.ScanAllText(signature, CancellationToken.None).ToArray();
/// <inheritdoc/>
public IEnumerable<nint> ScanAllText(string signature, CancellationToken cancellationToken)
@ -338,7 +338,7 @@ public class SigScanner : IDisposable, ISigScanner
{
cancellationToken.ThrowIfCancellationRequested();
var index = IndexOf(mBase, this.TextSectionSize, needle, mask, badShift);
var index = IndexOf(mBase, this.TextSectionSize - (int)(mBase - this.TextSectionBase), needle, mask, badShift);
if (index < 0)
break;

@ -1 +1 @@
Subproject commit c25482543246de695146c55ad7d571deca650919
Subproject commit e279b05e9a6d3a0eff85e7bcaec0fe523358afba

@ -1 +1 @@
Subproject commit fae3314282b38efc2ce1edf0255d4357d924ced1
Subproject commit a37961c453463f0f60a96f27aa278ef139841857