From f00d9927555d0c923d9a54bdabf12afe2454c087 Mon Sep 17 00:00:00 2001 From: L Date: Mon, 1 May 2023 20:31:38 +0200 Subject: [PATCH] TIKI_Orientation tweak --- misc/restuff/ida/ida.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/restuff/ida/ida.h b/misc/restuff/ida/ida.h index 4ba3365f..3e8070bd 100644 --- a/misc/restuff/ida/ida.h +++ b/misc/restuff/ida/ida.h @@ -7099,7 +7099,7 @@ typedef struct refImport_s debugString_t **debugStrings; int *numDebugStrings; - orientation_t ( *TIKI_OrientationInternal )( dtiki_t *tiki, int entNum, int tagNum, float scale ); + orientation_t* ( *TIKI_OrientationInternal )(orientation_t* or, dtiki_t *tiki, int entNum, int tagNum, float scale ); qboolean ( *TIKI_IsOnGroundInternal )( dtiki_t *tiki, int entNum, int tagNum, float thresHold ); void ( *TIKI_SetPoseInternal )( void *skeletor, frameInfo_t *frameInfo, int *boneTag, vec4_t boneQuat[4], float actionWeight ); void * ( *TIKI_Alloc )( int size ); @@ -7340,7 +7340,7 @@ typedef struct clientGameImport_s int ( *Tag_NumForName )( dtiki_t *pmdl, char *name ); char * ( *Tag_NameForNum )( dtiki_t *pmdl, int animNum ); void ( *ForceUpdatePose )( refEntity_t *model ); - orientation_t ( *TIKI_Orientation )( orientation_t *orientation, refEntity_t *model, int tagNum ); + void ( *TIKI_Orientation )( orientation_t *orientation, refEntity_t *model, int tagNum ); qboolean ( *TIKI_IsOnGround )( refEntity_t *model, int tagNum, float threshold ); void ( *UI_ShowScoreBoard )( const char *menuName ); void ( *UI_HideScoreBoard )( );