Skip to content

Commit e846aba

Browse files
committed
Fix crash inside VGUI2Extension
1 parent 9249858 commit e846aba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Plugins/VGUI2Extension/GameUI.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -3605,7 +3605,7 @@ void GameUI_FillAddress(void)
36053605
ctx->OperatorNewAddress = nextaddr;
36063606
}
36073607
}
3608-
else if (address > ctx->OperatorNewAddress && address[0] == 0xE8)
3608+
else if (ctx->OperatorNewAddress && address > ctx->OperatorNewAddress && address[0] == 0xE8)
36093609
{
36103610
PVOID call_candidate = (decltype(call_candidate))GetCallAddress(address);
36113611

@@ -3990,6 +3990,7 @@ void GameUI_InstallHooks(void)
39903990
{
39913991
Install_InlineHook(CBasePanel_ApplySchemeSettings);
39923992
}
3993+
39933994
if (gPrivateFuncs.GameUI_KeyValues_LoadFromFile)
39943995
{
39953996
Install_InlineHook(GameUI_KeyValues_LoadFromFile);

0 commit comments

Comments
 (0)