Skip to content

Commit

Permalink
fix: remove bad offset
Browse files Browse the repository at this point in the history
  • Loading branch information
Aireil committed Jun 26, 2024
1 parent 2fa6dbb commit 2c9267d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FFLogsViewer/Manager/OpenWithManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ private void ScanSigs()

try
{
this.isJoiningPartyFinderOffset = *(short*)(Service.SigScanner.ScanModule("?? ?? ?? ?? ?? ?? 8B D7 48 8D 44 24 ?? 33 C9 89") + 6);
this.isJoiningPartyFinderOffset = *(short*)Service.SigScanner.ScanModule("?? ?? ?? ?? ?? ?? 8B D7 48 8D 44 24 ?? 33 C9 89");
}
catch (Exception ex)
{
Expand Down

0 comments on commit 2c9267d

Please sign in to comment.