IOQ3 commit 2261

This commit is contained in:
Richard Allen 2012-10-04 14:43:32 +00:00
parent 0a3305e101
commit e76c833cb9
6 changed files with 6 additions and 6 deletions

View File

@ -1176,7 +1176,7 @@ static void CG_AddCEntity(centity_t * cent)
switch (cent->currentState.eType) {
default:
CG_Error("Bad entity type: %i\n", cent->currentState.eType);
CG_Error("Bad entity type: %i", cent->currentState.eType);
break;
case ET_INVISIBLE:
case ET_PUSH_TRIGGER:

View File

@ -1183,7 +1183,7 @@ void CG_ParticleExplosion(char *animStr, vec3_t origin, vec3_t vel, int duration
break;
}
if (!shaderAnimNames[anim]) {
CG_Error("CG_ParticleExplosion: unknown animation string: %s\n", animStr);
CG_Error("CG_ParticleExplosion: unknown animation string: %s", animStr);
return;
}

View File

@ -38,7 +38,7 @@ void *G_Alloc(int size)
}
if (allocPoint + size > POOLSIZE) {
G_Error("G_Alloc: failed on allocation of %i bytes\n", size); // bk010103 - was %u, but is signed
G_Error("G_Alloc: failed on allocation of %i bytes", size);
return NULL;
}

View File

@ -999,7 +999,7 @@ int SV_WriteDownloadToClient(client_t *cl, msg_t *msg)
else if ( !(sv_allowDownload->integer & DLF_ENABLE) ||
(sv_allowDownload->integer & DLF_NO_UDP) ) {
Com_Printf("clientDownload: %d : \"%s\" download disabled", (int) (cl - svs.clients), cl->downloadName);
Com_Printf("clientDownload: %d : \"%s\" download disabled\n", (int) (cl - svs.clients), cl->downloadName);
if (sv_pure->integer) {
Com_sprintf(errorMessage, sizeof(errorMessage), "Could not download \"%s\" because autodownloading is disabled on the server.\n\n"
"You will need to get this file elsewhere before you "

View File

@ -1004,7 +1004,7 @@ static void SV_RankNewGameCBF( GR_NEWGAME* gr_newgame, void* cbf_arg )
}
else if( gr_newgame->status == GR_STATUS_BADLEAGUE )
{
SV_RankError( "SV_RankNewGameCBF: Invalid League name\n" );
SV_RankError( "SV_RankNewGameCBF: Invalid League name" );
}
else
{

View File

@ -2003,7 +2003,7 @@ void UI_LoadMenus(const char *menuFile, qboolean reset)
handle = trap_PC_LoadSource("ui/menus.txt");
if (!handle) {
trap_Error(va
(S_COLOR_RED "default menu file not found: ui/menus.txt, unable to continue!\n"));
(S_COLOR_RED "default menu file not found: ui/menus.txt, unable to continue!"));
}
}