mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Fix #5849 - broken snapvector inverts player speed
Snapvector was converting floats to 16 bit integers instead of 32 bit integers.
This commit is contained in:
parent
daa9619913
commit
a99a214589
1 changed files with 2 additions and 2 deletions
|
@ -55,8 +55,8 @@ void qsnapvectorsse(vec3_t vec)
|
|||
|
||||
#define QROUNDX87(src) \
|
||||
"flds " src "\n" \
|
||||
"fistps " src "\n" \
|
||||
"filds " src "\n" \
|
||||
"fistpl " src "\n" \
|
||||
"fildl " src "\n" \
|
||||
"fstps " src "\n"
|
||||
|
||||
void qsnapvectorx87(vec3_t vec)
|
||||
|
|
Loading…
Reference in a new issue