mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-02-03 02:24:28 +00:00
Add a missing con qualifier in HUD_PlaybackEvent function.
This commit is contained in:
parent
cf6647e07c
commit
63b23b96a4
@ -127,7 +127,7 @@ Directly queue up an event on the client
|
|||||||
=====================
|
=====================
|
||||||
*/
|
*/
|
||||||
void HUD_PlaybackEvent( int flags, const edict_t *pInvoker, unsigned short eventindex, float delay,
|
void HUD_PlaybackEvent( int flags, const edict_t *pInvoker, unsigned short eventindex, float delay,
|
||||||
float *origin, float *angles, float fparam1, float fparam2, int iparam1, int iparam2, int bparam1, int bparam2 )
|
const float *origin, const float *angles, float fparam1, float fparam2, int iparam1, int iparam2, int bparam1, int bparam2 )
|
||||||
{
|
{
|
||||||
vec3_t org;
|
vec3_t org;
|
||||||
vec3_t ang;
|
vec3_t ang;
|
||||||
|
@ -27,7 +27,7 @@ int UTIL_SharedRandomLong( unsigned int seed, int low, int high );
|
|||||||
int HUD_GetWeaponAnim( void );
|
int HUD_GetWeaponAnim( void );
|
||||||
void HUD_SendWeaponAnim( int iAnim, int body, int force );
|
void HUD_SendWeaponAnim( int iAnim, int body, int force );
|
||||||
void HUD_PlaySound( const char *sound, float volume );
|
void HUD_PlaySound( const char *sound, float volume );
|
||||||
void HUD_PlaybackEvent( int flags, const struct edict_s *pInvoker, unsigned short eventindex, float delay, float *origin, float *angles, float fparam1, float fparam2, int iparam1, int iparam2, int bparam1, int bparam2 );
|
void HUD_PlaybackEvent( int flags, const struct edict_s *pInvoker, unsigned short eventindex, float delay, const float *origin, const float *angles, float fparam1, float fparam2, int iparam1, int iparam2, int bparam1, int bparam2 );
|
||||||
void HUD_SetMaxSpeed( const struct edict_s *ed, float speed );
|
void HUD_SetMaxSpeed( const struct edict_s *ed, float speed );
|
||||||
int stub_PrecacheModel( const char* s );
|
int stub_PrecacheModel( const char* s );
|
||||||
int stub_PrecacheSound( const char* s );
|
int stub_PrecacheSound( const char* s );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user