mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-22 02:11:19 +00:00
[sw] Update for changed particle field names
Fixes 32-bit x86 target builds.
This commit is contained in:
parent
bcf80650f3
commit
5bfe0e5d34
1 changed files with 3 additions and 3 deletions
|
@ -68,10 +68,10 @@ C(D_DrawParticle):
|
|||
// transform point
|
||||
// VectorSubtract (p->org, r_origin, local);
|
||||
flds C(r_origin)
|
||||
fsubrs pt_org(%edi)
|
||||
flds pt_org+4(%edi)
|
||||
fsubrs pt_pos(%edi)
|
||||
flds pt_pos+4(%edi)
|
||||
fsubs C(r_origin)+4
|
||||
flds pt_org+8(%edi)
|
||||
flds pt_pos+8(%edi)
|
||||
fsubs C(r_origin)+8
|
||||
fxch %st(2) // local[0] | local[1] | local[2]
|
||||
|
||||
|
|
Loading…
Reference in a new issue