mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-10 07:11:36 +00:00
IOQ3 commit 2261
This commit is contained in:
parent
0a3305e101
commit
e76c833cb9
6 changed files with 6 additions and 6 deletions
|
@ -1176,7 +1176,7 @@ static void CG_AddCEntity(centity_t * cent)
|
||||||
|
|
||||||
switch (cent->currentState.eType) {
|
switch (cent->currentState.eType) {
|
||||||
default:
|
default:
|
||||||
CG_Error("Bad entity type: %i\n", cent->currentState.eType);
|
CG_Error("Bad entity type: %i", cent->currentState.eType);
|
||||||
break;
|
break;
|
||||||
case ET_INVISIBLE:
|
case ET_INVISIBLE:
|
||||||
case ET_PUSH_TRIGGER:
|
case ET_PUSH_TRIGGER:
|
||||||
|
|
|
@ -1183,7 +1183,7 @@ void CG_ParticleExplosion(char *animStr, vec3_t origin, vec3_t vel, int duration
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (!shaderAnimNames[anim]) {
|
if (!shaderAnimNames[anim]) {
|
||||||
CG_Error("CG_ParticleExplosion: unknown animation string: %s\n", animStr);
|
CG_Error("CG_ParticleExplosion: unknown animation string: %s", animStr);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@ void *G_Alloc(int size)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (allocPoint + size > POOLSIZE) {
|
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;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -999,7 +999,7 @@ int SV_WriteDownloadToClient(client_t *cl, msg_t *msg)
|
||||||
else if ( !(sv_allowDownload->integer & DLF_ENABLE) ||
|
else if ( !(sv_allowDownload->integer & DLF_ENABLE) ||
|
||||||
(sv_allowDownload->integer & DLF_NO_UDP) ) {
|
(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) {
|
if (sv_pure->integer) {
|
||||||
Com_sprintf(errorMessage, sizeof(errorMessage), "Could not download \"%s\" because autodownloading is disabled on the server.\n\n"
|
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 "
|
"You will need to get this file elsewhere before you "
|
||||||
|
|
|
@ -1004,7 +1004,7 @@ static void SV_RankNewGameCBF( GR_NEWGAME* gr_newgame, void* cbf_arg )
|
||||||
}
|
}
|
||||||
else if( gr_newgame->status == GR_STATUS_BADLEAGUE )
|
else if( gr_newgame->status == GR_STATUS_BADLEAGUE )
|
||||||
{
|
{
|
||||||
SV_RankError( "SV_RankNewGameCBF: Invalid League name\n" );
|
SV_RankError( "SV_RankNewGameCBF: Invalid League name" );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
@ -2003,7 +2003,7 @@ void UI_LoadMenus(const char *menuFile, qboolean reset)
|
||||||
handle = trap_PC_LoadSource("ui/menus.txt");
|
handle = trap_PC_LoadSource("ui/menus.txt");
|
||||||
if (!handle) {
|
if (!handle) {
|
||||||
trap_Error(va
|
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!"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue