summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFire-Head <Fire-Head@users.noreply.github.com>2019-05-29 21:16:13 +0300
committerFire-Head <Fire-Head@users.noreply.github.com>2019-05-29 21:16:13 +0300
commit6f9c1f307f48d1eefc849b99123f9bc2c04e21b7 (patch)
tree8f36a74904edbb6d1e41008f2538248d782b8431
parent64f9dfbb89db50eabe30c94a89b5a5e4b5730a5f (diff)
fix2
-rw-r--r--src/common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common.h b/src/common.h
index e8e3cf69..af50313b 100644
--- a/src/common.h
+++ b/src/common.h
@@ -149,9 +149,9 @@ sq(float x) { return x*x; }
#if USE_PS2_RAND == TRUE
-#define MY_RAND_MAX 32767
-#else
#define MY_RAND_MAX 65535
+#else
+#define MY_RAND_MAX 32767
#endif
int myrand(void);