first pass sig replacements

This commit is contained in:
Kaz Wolfe 2024-06-26 09:19:57 -07:00
parent efbe318178
commit dc7e6dcbc0
No known key found for this signature in database
GPG key ID: 258813F53A16EBB4
13 changed files with 25 additions and 23 deletions

View file

@ -115,7 +115,7 @@ internal sealed class Dalamud : IServiceType
NativeFunctions.SetUnhandledExceptionFilter(this.DefaultExceptionFilter);
Log.Debug($"SE default exception filter at {this.DefaultExceptionFilter.ToInt64():X}");
var debugSig = "40 55 53 56 48 8D AC 24 ?? ?? ?? ?? B8 ?? ?? ?? ?? E8 ?? ?? ?? ?? 48 2B E0 48 8B 05 ?? ?? ?? ?? 48 33 C4 48 89 85 ?? ?? ?? ?? 48 83 3D ?? ?? ?? ?? ??";
var debugSig = "40 55 53 57 48 8D AC 24 70 AD FF FF";
this.DebugExceptionFilter = Service<TargetSigScanner>.Get().ScanText(debugSig);
Log.Debug($"SE debug exception filter at {this.DebugExceptionFilter.ToInt64():X}");
}