mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-20 01:11:18 +00:00
fix a bunch of ;; typos
This commit is contained in:
parent
d78f34e795
commit
ee30860cef
8 changed files with 10 additions and 10 deletions
|
@ -63,7 +63,7 @@ void Sys_Print (FILE *stream, const char *fmt, va_list args);
|
|||
void Sys_Printf (const char *fmt, ...) __attribute__((format(printf,1,2)));
|
||||
void Sys_DPrintf (const char *fmt, ...) __attribute__((format(printf,1,2)));
|
||||
void Sys_Error (const char *error, ...) __attribute__((format(printf,1,2), noreturn));
|
||||
void Sys_Quit (void) __attribute__((noreturn));;
|
||||
void Sys_Quit (void) __attribute__((noreturn));
|
||||
void Sys_Shutdown (void);
|
||||
void Sys_RegisterShutdown (void (*func) (void));
|
||||
double Sys_DoubleTime (void);
|
||||
|
|
|
@ -508,7 +508,7 @@ SNDDMA_Init (void)
|
|||
/* Init DirectSound */
|
||||
if (!wavonly) {
|
||||
if (snd_firsttime || snd_isdirect) {
|
||||
stat = SNDDMA_InitDirect ();;
|
||||
stat = SNDDMA_InitDirect ();
|
||||
|
||||
if (stat == SIS_SUCCESS) {
|
||||
snd_isdirect = true;
|
||||
|
|
|
@ -431,7 +431,7 @@ loop:
|
|||
tex = surf->texinfo;
|
||||
|
||||
s = DotProduct (mid, tex->vecs[0]) + tex->vecs[0][3];
|
||||
t = DotProduct (mid, tex->vecs[1]) + tex->vecs[1][3];;
|
||||
t = DotProduct (mid, tex->vecs[1]) + tex->vecs[1][3];
|
||||
|
||||
if (s < surf->texturemins[0] || t < surf->texturemins[1])
|
||||
continue;
|
||||
|
|
|
@ -929,7 +929,7 @@ CL_ParseServerMessage (void)
|
|||
i = MSG_ReadByte (net_message);
|
||||
if (i < 0 || i >= MAX_CL_STATS)
|
||||
Sys_Error ("svc_updatestat: %i is invalid", i);
|
||||
cl.stats[i] = MSG_ReadLong (net_message);;
|
||||
cl.stats[i] = MSG_ReadLong (net_message);
|
||||
break;
|
||||
|
||||
case svc_spawnstaticsound:
|
||||
|
|
|
@ -196,7 +196,7 @@ WIPX_OpenSocket (int port)
|
|||
|
||||
address.sa_family = AF_IPX;
|
||||
memset (address.sa_netnum, 0, 4);
|
||||
memset (address.sa_nodenum, 0, 6);;
|
||||
memset (address.sa_nodenum, 0, 6);
|
||||
address.sa_socket = htons ((unsigned short) port);
|
||||
if (bind (newsocket, (void *) &address, sizeof (address)) == 0) {
|
||||
ipxsocket[handle] = newsocket;
|
||||
|
|
|
@ -73,7 +73,7 @@ typedef struct
|
|||
vec3_t angles;
|
||||
vec3_t velocity;
|
||||
int oldbuttons;
|
||||
int oldonground;;
|
||||
int oldonground;
|
||||
float waterjumptime;
|
||||
qboolean dead;
|
||||
qboolean flying;
|
||||
|
|
|
@ -265,7 +265,7 @@ Log_Incoming_Packet (const char *p, int len)
|
|||
Net_LogPrintf ("\n>>>>>>>>>>>>>>>>>>>>> server to client %d bytes: "
|
||||
">>>>>>>>>>>>>>>>>>>>>>>>\n", len);
|
||||
if (net_loglevel->int_val != 3)
|
||||
hex_dump_buf ((unsigned char *) p, len);;
|
||||
hex_dump_buf ((unsigned char *) p, len);
|
||||
if (net_loglevel->int_val > 1)
|
||||
Analyze_Server_Packet (p, len);
|
||||
}
|
||||
|
@ -282,14 +282,14 @@ Log_Outgoing_Packet (const char *p, int len)
|
|||
Net_LogPrintf ("\n>>>>>>>>>>>>>>>>>>>>> server to client %d bytes: "
|
||||
">>>>>>>>>>>>>>>>>>>>>>>>\n", len);
|
||||
if (net_loglevel->int_val != 3)
|
||||
hex_dump_buf ((unsigned char *) p, len);;
|
||||
hex_dump_buf ((unsigned char *) p, len);
|
||||
if (net_loglevel->int_val > 1)
|
||||
Analyze_Server_Packet (p, len);
|
||||
} else {
|
||||
Net_LogPrintf ("\n<<<<<<<<<<<<<<<<<<<<< client to server %d bytes: "
|
||||
"<<<<<<<<<<<<<<<<<<<<<<<<\n", len);
|
||||
if (net_loglevel->int_val != 3)
|
||||
hex_dump_buf ((unsigned char *) p, len);;
|
||||
hex_dump_buf ((unsigned char *) p, len);
|
||||
if (net_loglevel->int_val > 1)
|
||||
Analyze_Client_Packet (p, len);
|
||||
}
|
||||
|
|
|
@ -82,7 +82,7 @@ get_hash (void *_op, void *_tab)
|
|||
} else {
|
||||
abort ();
|
||||
}
|
||||
return hash + Hash_String (op->name);;
|
||||
return hash + Hash_String (op->name);
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
Loading…
Reference in a new issue