diff options
author | M. Kristall <mkpdev@gmail.com> | 2009-10-09 03:52:15 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:16:43 +0000 |
commit | 71d9cec2436a62af59b20f53d7d94ad8890b3746 (patch) | |
tree | 0a63295f2c4c231f1d0e8bfe98d4311b78c1b64a /src/game/g_local.h | |
parent | 051c2dbb494611aa953609d366cc8c6c16916c87 (diff) |
* (bug 3194) potential log ambiguities (requires log parser updates)
* Fix broken r1753
* Some minor refactoring / cleanup
Diffstat (limited to 'src/game/g_local.h')
-rw-r--r-- | src/game/g_local.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/g_local.h b/src/game/g_local.h index 492bce49..48451f12 100644 --- a/src/game/g_local.h +++ b/src/game/g_local.h @@ -687,7 +687,7 @@ void G_ToggleFollow( gentity_t *ent ); void G_MatchOnePlayer( int *plist, int num, char *err, int len ); int G_ClientNumberFromString( char *s ); int G_ClientNumbersFromString( char *s, int *plist, int max ); -void G_Say( gentity_t *ent, gentity_t *target, int mode, const char *chatText ); +void G_Say( gentity_t *ent, int mode, const char *chatText ); int G_SayArgc( void ); qboolean G_SayArgv( int n, char *buffer, int bufferLength ); char *G_SayConcatArgs( int start ); @@ -961,7 +961,7 @@ void G_MapConfigs( const char *mapname ); void CalculateRanks( void ); void FindIntermissionPoint( void ); void G_RunThink( gentity_t *ent ); -void QDECL G_AdminMessage( const char *prefix, const char *fmt, ... ); +void QDECL G_AdminMessage( gentity_t *ent, const char *fmt, ... ); void QDECL G_LogPrintf( const char *fmt, ... ); void SendScoreboardMessageToAllClients( void ); void QDECL G_Printf( const char *fmt, ... ); |