mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-20 09:21:09 +00:00
fix a really nasty wrong index bug that would cause SIGFPE when recording demos
This commit is contained in:
parent
a62a92c1be
commit
a089934338
1 changed files with 1 additions and 1 deletions
|
@ -498,7 +498,7 @@ SV_DemoWritePackets (int num)
|
|||
}
|
||||
|
||||
for (j = 0; j < 3; j++)
|
||||
if (origin[j] != demoinfo->origin[i])
|
||||
if (origin[j] != demoinfo->origin[j])
|
||||
flags |= DF_ORIGIN << j;
|
||||
|
||||
if (cl->fixangle || demo.fixangletime[i] != cl->cmdtime) {
|
||||
|
|
Loading…
Reference in a new issue