GLQUAKE has been erradicated from the .c files (unfortunatly not the .h files)

This commit is contained in:
Bill Currie 2000-05-13 09:23:01 +00:00
parent 05bb1f14b1
commit 0cce8322b1
3 changed files with 1339 additions and 9 deletions

View file

@ -879,13 +879,6 @@ CL_NewTranslation
*/
void CL_NewTranslation (int slot)
{
#ifdef GLQUAKE
if (slot > MAX_CLIENTS)
Sys_Error ("CL_NewTranslation: slot > MAX_CLIENTS");
R_TranslatePlayerSkin(slot);
#else
int i, j;
int top, bottom;
byte *dest, *source;
@ -934,7 +927,6 @@ void CL_NewTranslation (int slot)
dest[BOTTOM_RANGE+j] = source[bottom+15-j];
}
}
#endif
}
/*