From 6f9c1f307f48d1eefc849b99123f9bc2c04e21b7 Mon Sep 17 00:00:00 2001 From: Fire-Head Date: Wed, 29 May 2019 21:16:13 +0300 Subject: [PATCH] fix2 --- src/common.h | 4 ++-- 1 file 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);