- load qvm file by default again to avoid 'unpure' error

- fix loading qvms in 64bit q3
This commit is contained in:
Ludwig Nussel 2005-08-30 21:25:54 +00:00
parent 770c6808d0
commit 54d65a0ead
3 changed files with 17 additions and 5 deletions

View file

@ -330,10 +330,10 @@ static inline float _vmf(long x)
{
union {
long l;
float fh, fl;
float f;
} t;
t.l = x;
return t.fl;
return t.f;
}
#define VMF(x) _vmf(args[x])