From 9eb1a379853b088df0ab3a4beae4e79eaead4823 Mon Sep 17 00:00:00 2001 From: tslil clingman Date: Sat, 23 Jan 2021 18:55:48 -0500 Subject: Fixed some important bugs --- include/xorshift64.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/xorshift64.h') diff --git a/include/xorshift64.h b/include/xorshift64.h index a12a38d..ee41abc 100644 --- a/include/xorshift64.h +++ b/include/xorshift64.h @@ -5,7 +5,7 @@ extern uint64_t xors; -#define XORSHIFT { \ +#define XORSHIFT64 { \ xors ^= xors >> 12; \ xors ^= xors << 25; \ xors ^= xors >> 27; \ -- cgit v1.3.1