mirror of
https://github.com/libretro/libretro-tyrquake.git
synced 2025-03-01 20:26:04 +00:00
server: constify SV_ModelIndex arg
Signed-off-by: Kevin Shanahan <kmshanah@disenchant.net>
This commit is contained in:
parent
54e3e5d733
commit
abda855dc1
@ -213,7 +213,7 @@ void SV_DropClient(qboolean crash);
|
||||
void SV_SendClientMessages(void);
|
||||
void SV_ClearDatagram(void);
|
||||
|
||||
int SV_ModelIndex(char *name);
|
||||
int SV_ModelIndex(const char *name);
|
||||
|
||||
void SV_SetIdealPitch(void);
|
||||
|
||||
|
@ -996,7 +996,7 @@ SV_ModelIndex
|
||||
================
|
||||
*/
|
||||
int
|
||||
SV_ModelIndex(char *name)
|
||||
SV_ModelIndex(const char *name)
|
||||
{
|
||||
int i;
|
||||
|
||||
|
@ -389,7 +389,7 @@ void SV_FullClientUpdateToClient(client_t *client, client_t *cl);
|
||||
int SV_CalcPing(client_t *cl);
|
||||
void SV_FullClientUpdate(client_t *client, sizebuf_t *buf);
|
||||
|
||||
int SV_ModelIndex(char *name);
|
||||
int SV_ModelIndex(const char *name);
|
||||
|
||||
qboolean SV_CheckBottom(edict_t *ent);
|
||||
qboolean SV_movestep(edict_t *ent, vec3_t move, qboolean relink);
|
||||
|
@ -39,7 +39,7 @@ SV_ModelIndex
|
||||
================
|
||||
*/
|
||||
int
|
||||
SV_ModelIndex(char *name)
|
||||
SV_ModelIndex(const char *name)
|
||||
{
|
||||
int i;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user