mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 12:52:46 +00:00
[nq] Fix incorrect handling of argv in PF_WriteBytes
This fixes an illegible server message error on going through a teleport in the start map (how I noticed the problem). Funnily enough, I had spotted the mistake when editing the qw version, but forgot to correct the nq version.
This commit is contained in:
parent
b9bd45ad99
commit
3bd50c1555
1 changed files with 1 additions and 1 deletions
|
@ -1139,7 +1139,7 @@ PF_WriteBytes (progs_t *pr, void *data)
|
|||
}
|
||||
}
|
||||
for (i = 0; i < argc; i++) {
|
||||
p = PR_PTR (float, &argv[i]);
|
||||
p = PR_PTR (float, argv[i]);
|
||||
MSG_WriteByte (msg, p);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue