From 9459407a6882038a1a02a595c92dd491083e9640 Mon Sep 17 00:00:00 2001 From: ineed bots Date: Wed, 30 Aug 2023 12:30:18 -0600 Subject: [PATCH] tweak --- src/game/clientscript_public.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/game/clientscript_public.hpp b/src/game/clientscript_public.hpp index 06a334a..802b4f2 100644 --- a/src/game/clientscript_public.hpp +++ b/src/game/clientscript_public.hpp @@ -376,6 +376,7 @@ namespace game unsigned int pointerValue; //OFS: 0x5 SIZE: 0x4 VariableStackBuffer * stackValue; //OFS: 0x6 SIZE: 0x4 unsigned int entityOffset; //OFS: 0x7 SIZE: 0x4 + scr_anim_s anim; }; ASSERT_STRUCT_SIZE(VariableUnion, 0x4); @@ -420,11 +421,11 @@ namespace game struct function_frame_t { - function_stack_t _fs; //OFS: 0x0 SIZE: 0x14 + function_stack_t fs; //OFS: 0x0 SIZE: 0x14 VariableType topType; //OFS: 0x14 SIZE: 0x4 }; ASSERT_STRUCT_SIZE(function_frame_t, 0x18); - ASSERT_STRUCT_OFFSET(function_frame_t, _fs, 0x0); + ASSERT_STRUCT_OFFSET(function_frame_t, fs, 0x0); ASSERT_STRUCT_OFFSET(function_frame_t, topType, 0x14); struct scrVmPub_t