Remove state trace debug print

This commit is contained in:
AJ Martinez 2023-03-18 05:31:06 -07:00 committed by James R
parent 138663bf5a
commit 7218c225ec

View file

@ -1906,7 +1906,6 @@ static boolean CL_ServerConnectionTicker(const char *tmpsave, tic_t *oldtic, tic
return false; return false;
} }
case CL_LOADFILES: case CL_LOADFILES:
CONS_Printf("loadfiles\n");
if (CL_LoadServerFiles()) if (CL_LoadServerFiles())
cl_mode = CL_SETUPFILES; cl_mode = CL_SETUPFILES;
@ -1953,7 +1952,6 @@ static boolean CL_ServerConnectionTicker(const char *tmpsave, tic_t *oldtic, tic
} }
break; break;
case CL_SENDKEY: case CL_SENDKEY:
CONS_Printf("sendkey\n");
if (I_GetTime() >= *asksent && CL_SendKey()) if (I_GetTime() >= *asksent && CL_SendKey())
{ {
*asksent = I_GetTime() + NEWTICRATE*3; *asksent = I_GetTime() + NEWTICRATE*3;
@ -1961,7 +1959,6 @@ static boolean CL_ServerConnectionTicker(const char *tmpsave, tic_t *oldtic, tic
} }
break; break;
case CL_WAITCHALLENGE: case CL_WAITCHALLENGE:
CONS_Printf("waitchallenge\n");
if (I_GetTime() >= *asksent) if (I_GetTime() >= *asksent)
{ {
cl_mode = CL_SENDKEY; cl_mode = CL_SENDKEY;