mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
- changed VM_EPSILON from 1/1024 to 1/65536 so that the ~== operator can actually be used.
1/1024 is far too coarse for ZDoom's purposes, this needs to be at least fixed point precision.
This commit is contained in:
parent
4b41e735f1
commit
1e11042de0
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ typedef unsigned int VM_UWORD;
|
|||
typedef signed int VM_SWORD;
|
||||
typedef VM_UBYTE VM_ATAG;
|
||||
|
||||
#define VM_EPSILON (1/1024.0)
|
||||
#define VM_EPSILON (1/65536.0)
|
||||
|
||||
union VMOP
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue