Skip to content

Commit

Permalink
Constant changed
Browse files Browse the repository at this point in the history
  • Loading branch information
dystopm committed Nov 27, 2023
1 parent 4befabb commit 9eada6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions regamedll/dlls/animation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ server_studio_api_t IEngineStudio;
studiohdr_t *g_pstudiohdr;

float (*g_pRotationMatrix)[3][4];
float (*g_pBoneTransform)[STUDIO_NUM_HULLS][3][4];
float (*g_pBoneTransform)[MAXSTUDIOBONES][3][4];

int ExtractBbox(void *pmodel, int sequence, float *mins, float *maxs)
{
Expand Down Expand Up @@ -537,7 +537,7 @@ C_DLLEXPORT int Server_GetBlendingInterface(int version, struct sv_blending_inte
IEngineStudio.Mod_Extradata = ((struct server_studio_api_s *)pstudio)->Mod_Extradata;

g_pRotationMatrix = (float (*)[3][4])rotationmatrix;
g_pBoneTransform = (float (*)[STUDIO_NUM_HULLS][3][4])bonetransform;
g_pBoneTransform = (float (*)[MAXSTUDIOBONES][3][4])bonetransform;

return 1;
}
Expand Down

0 comments on commit 9eada6c

Please sign in to comment.