Skip to content

Commit

Permalink
Fix sigs for 3266.
Browse files Browse the repository at this point in the history
  • Loading branch information
hzqst committed Feb 5, 2024
1 parent fd1020c commit e59951a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Plugins/VGUI2Extension/GameUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2749,7 +2749,7 @@ void GameUI_FillAddress(void)
ctx->instCount_Add64h = instCount;
}

if (address[0] == 0xE8 && ctx->instCount_Add64h && instCount > ctx->instCount_Add64h && instCount < ctx->instCount_Add64h + 10)
if (address[0] == 0xE8 && ctx->instCount_Add64h && instCount > ctx->instCount_Add64h && instCount < ctx->instCount_Add64h + 15)
{
auto Candidate = GetCallAddress(address);

Expand Down

0 comments on commit e59951a

Please sign in to comment.