remove a bunch of superfluous formatting calls
From /dev/humancontroller.
This commit is contained in:
parent
20c6d1e33f
commit
2db73231eb
6 changed files with 18 additions and 18 deletions
|
@ -37,7 +37,7 @@ void QDECL Com_Error( int level, const char *error, ... ) {
|
|||
Q_vsnprintf (text, sizeof(text), error, argptr);
|
||||
va_end (argptr);
|
||||
|
||||
trap_Error( va("%s", text) );
|
||||
trap_Error( text );
|
||||
}
|
||||
|
||||
void QDECL Com_Printf( const char *msg, ... ) {
|
||||
|
@ -48,7 +48,7 @@ void QDECL Com_Printf( const char *msg, ... ) {
|
|||
Q_vsnprintf (text, sizeof(text), msg, argptr);
|
||||
va_end (argptr);
|
||||
|
||||
trap_Print( va("%s", text) );
|
||||
trap_Print( text );
|
||||
}
|
||||
|
||||
qboolean newUI = qfalse;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue