summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorepoch <epoch@hacking.allowed.org>2017-12-24 04:32:37 -0600
committerepoch <epoch@hacking.allowed.org>2017-12-24 04:32:37 -0600
commit8b3772c0b93d872d500438ca7542fd7bfb9cbd9b (patch)
treed8641da90bfe864e1d0999ae64901888e03921d5 /src
parentc4c642c7f3fd84f2cce78b84561bfb42030d2230 (diff)
downloadhackvr-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.h2
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;