From 52b01775c2c94f08786696cae7836ca56f683739 Mon Sep 17 00:00:00 2001 From: jbzdarkid Date: Tue, 19 Nov 2019 09:42:45 -0800 Subject: Fix RNG -- this will break seeds, though. --- Source/Random.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Random.h') diff --git a/Source/Random.h b/Source/Random.h index 46287a1..a2ad706 100644 --- a/Source/Random.h +++ b/Source/Random.h @@ -8,5 +8,5 @@ public: static int RandInt(int min, int max); private: - static int s_seed; + static uint32_t s_seed; }; -- cgit 1.4.1