diff options
author | epoch <epoch@hacking.allowed.org> | 2017-12-24 04:32:37 -0600 |
---|---|---|
committer | epoch <epoch@hacking.allowed.org> | 2017-12-24 04:32:37 -0600 |
commit | 8b3772c0b93d872d500438ca7542fd7bfb9cbd9b (patch) | |
tree | d8641da90bfe864e1d0999ae64901888e03921d5 /src | |
parent | c4c642c7f3fd84f2cce78b84561bfb42030d2230 (diff) | |
download | hackvr-8b3772c0b93d872d500438ca7542fd7bfb9cbd9b.tar.gz hackvr-8b3772c0b93d872d500438ca7542fd7bfb9cbd9b.zip |
changed real type to be double instead of double long
Diffstat (limited to 'src')
-rw-r--r-- | src/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.h b/src/common.h index c99194d..dd3780a 100644 --- a/src/common.h +++ b/src/common.h @@ -12,7 +12,7 @@ #define min(a,b) (((a)<(b))?(a):(b)) #define max(a,b) (((a)>(b))?(a):(b)) -typedef double long real; +typedef double real; typedef struct { real r; |