mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 14:42:13 +00:00
Hopefully fixed Molgrum's void* error
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2561 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
fb234dac8a
commit
7352cb0974
1 changed files with 1 additions and 1 deletions
|
@ -486,7 +486,7 @@ qboolean NQNetchan_Process(cluster_t *cluster, netchan_t *chan, netmsg_t *msg)
|
|||
return false;
|
||||
}
|
||||
|
||||
memcpy(chan->in_fragment_buf + chan->in_fragment_length, msg->data+8, msg->cursize-8);
|
||||
memcpy(chan->in_fragment_buf + chan->in_fragment_length, (char*)msg->data+8, msg->cursize-8);
|
||||
chan->in_fragment_length += msg->cursize-8;
|
||||
|
||||
if (header & NETFLAG_EOM)
|
||||
|
|
Loading…
Reference in a new issue