mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-03-13 03:33:28 +00:00
Fix a typo
This commit is contained in:
parent
0e3d9f385a
commit
54076d1a07
1 changed files with 4 additions and 4 deletions
|
@ -112,7 +112,7 @@ SV_New_f (void)
|
|||
//NOTE: This doesn't go through ClientReliableWrite since it's before the user
|
||||
//spawns. These functions are written to not overflow
|
||||
if (host_client->num_backbuf) {
|
||||
Con_Printf ("WARNING %s: [SV_New] Back buffered (%d0, clearing",
|
||||
Con_Printf ("WARNING %s: [SV_New] Back buffered (%d), clearing\n",
|
||||
host_client->name, host_client->netchan.message.cursize);
|
||||
host_client->num_backbuf = 0;
|
||||
SZ_Clear (&host_client->netchan.message);
|
||||
|
@ -183,7 +183,7 @@ SV_Soundlist_f (void)
|
|||
//NOTE: This doesn't go through ClientReliableWrite since it's before the user
|
||||
//spawns. These functions are written to not overflow
|
||||
if (host_client->num_backbuf) {
|
||||
Con_Printf ("WARNING %s: [SV_Soundlist] Back buffered (%d0, clearing",
|
||||
Con_Printf ("WARNING %s: [SV_Soundlist] Back buffered (%d), clearing\n",
|
||||
host_client->name, host_client->netchan.message.cursize);
|
||||
host_client->num_backbuf = 0;
|
||||
SZ_Clear (&host_client->netchan.message);
|
||||
|
@ -233,7 +233,7 @@ SV_Modellist_f (void)
|
|||
//NOTE: This doesn't go through ClientReliableWrite since it's before the user
|
||||
//spawns. These functions are written to not overflow
|
||||
if (host_client->num_backbuf) {
|
||||
Con_Printf ("WARNING %s: [SV_Modellist] Back buffered (%d0, clearing",
|
||||
Con_Printf ("WARNING %s: [SV_Modellist] Back buffered (%d), clearing\n",
|
||||
host_client->name, host_client->netchan.message.cursize);
|
||||
host_client->num_backbuf = 0;
|
||||
SZ_Clear (&host_client->netchan.message);
|
||||
|
@ -299,7 +299,7 @@ SV_PreSpawn_f (void)
|
|||
// the user
|
||||
// spawns. These functions are written to not overflow
|
||||
if (host_client->num_backbuf) {
|
||||
Con_Printf ("WARNING %s: [SV_PreSpawn] Back buffered (%d0, clearing",
|
||||
Con_Printf ("WARNING %s: [SV_PreSpawn] Back buffered (%d), clearing\n",
|
||||
host_client->name, host_client->netchan.message.cursize);
|
||||
host_client->num_backbuf = 0;
|
||||
SZ_Clear (&host_client->netchan.message);
|
||||
|
|
Loading…
Reference in a new issue