mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 06:31:47 +00:00
msg->oob is actually qboolean (#4010)
This commit is contained in:
parent
40e4a2e5c4
commit
f0e24f9a46
1 changed files with 6 additions and 4 deletions
|
@ -36,7 +36,8 @@ SV_Netchan_Encode
|
|||
static void SV_Netchan_Encode( client_t *client, msg_t *msg ) {
|
||||
long reliableAcknowledge, i, index;
|
||||
byte key, *string;
|
||||
int srdc, sbit, soob;
|
||||
int srdc, sbit;
|
||||
qboolean soob;
|
||||
|
||||
if ( msg->cursize < SV_ENCODE_START ) {
|
||||
return;
|
||||
|
@ -48,7 +49,7 @@ static void SV_Netchan_Encode( client_t *client, msg_t *msg ) {
|
|||
|
||||
msg->bit = 0;
|
||||
msg->readcount = 0;
|
||||
msg->oob = 0;
|
||||
msg->oob = qfalse;
|
||||
|
||||
reliableAcknowledge = MSG_ReadLong(msg);
|
||||
|
||||
|
@ -89,14 +90,15 @@ SV_Netchan_Decode
|
|||
*/
|
||||
static void SV_Netchan_Decode( client_t *client, msg_t *msg ) {
|
||||
int serverId, messageAcknowledge, reliableAcknowledge;
|
||||
int i, index, srdc, sbit, soob;
|
||||
int i, index, srdc, sbit;
|
||||
qboolean soob;
|
||||
byte key, *string;
|
||||
|
||||
srdc = msg->readcount;
|
||||
sbit = msg->bit;
|
||||
soob = msg->oob;
|
||||
|
||||
msg->oob = 0;
|
||||
msg->oob = qfalse;
|
||||
|
||||
serverId = MSG_ReadLong(msg);
|
||||
messageAcknowledge = MSG_ReadLong(msg);
|
||||
|
|
Loading…
Reference in a new issue