mirror of
https://github.com/nzp-team/fteqw.git
synced 2025-02-12 14:55:34 +00:00
Fix a bad type.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4328 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
ec6a6dcd8b
commit
2e978297a9
1 changed files with 1 additions and 1 deletions
|
@ -192,7 +192,7 @@ Con_DPrintf
|
||||||
A Con_Printf that only shows up if the "developer" cvar is set
|
A Con_Printf that only shows up if the "developer" cvar is set
|
||||||
================
|
================
|
||||||
*/
|
*/
|
||||||
void Con_DPrintf (char *fmt, ...)
|
void Con_DPrintf (const char *fmt, ...)
|
||||||
{
|
{
|
||||||
va_list argptr;
|
va_list argptr;
|
||||||
char msg[MAXPRINTMSG];
|
char msg[MAXPRINTMSG];
|
||||||
|
|
Loading…
Reference in a new issue