mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 23:02:16 +00:00
remove commented out error code. it only confused the reader anyway
This commit is contained in:
parent
74d8c81457
commit
151c487fea
2 changed files with 0 additions and 2 deletions
|
@ -55,7 +55,6 @@ CL_NewTranslation (int slot)
|
||||||
char s[512];
|
char s[512];
|
||||||
|
|
||||||
if (slot > MAX_CLIENTS)
|
if (slot > MAX_CLIENTS)
|
||||||
// Sys_Error ("CL_NewTranslation: slot > MAX_CLIENTS");
|
|
||||||
Host_EndGame ("CL_NewTranslation: slot > MAX_CLIENTS");
|
Host_EndGame ("CL_NewTranslation: slot > MAX_CLIENTS");
|
||||||
|
|
||||||
player = &cl.players[slot];
|
player = &cl.players[slot];
|
||||||
|
|
|
@ -44,7 +44,6 @@ void
|
||||||
CL_NewTranslation (int slot)
|
CL_NewTranslation (int slot)
|
||||||
{
|
{
|
||||||
if (slot > MAX_CLIENTS)
|
if (slot > MAX_CLIENTS)
|
||||||
// Sys_Error ("CL_NewTranslation: slot > MAX_CLIENTS");
|
|
||||||
Host_EndGame ("CL_NewTranslation: slot > MAX_CLIENTS");
|
Host_EndGame ("CL_NewTranslation: slot > MAX_CLIENTS");
|
||||||
|
|
||||||
R_TranslatePlayerSkin (slot);
|
R_TranslatePlayerSkin (slot);
|
||||||
|
|
Loading…
Reference in a new issue