about summary refs log tree commit diff stats
path: root/Source/Random.h
diff options
context:
space:
mode:
authorjbzdarkid <jbzdarkid@gmail.com>2019-11-19 09:42:45 -0800
committerjbzdarkid <jbzdarkid@gmail.com>2019-11-19 09:42:45 -0800
commit52b01775c2c94f08786696cae7836ca56f683739 (patch)
treed6d7d7604c8f5d793be28bcf21753b02d7d31bb7 /Source/Random.h
parent7a13ef0a94f6ed4989677530b1b37e1af0692fc7 (diff)
downloadwitness-tutorializer-52b01775c2c94f08786696cae7836ca56f683739.tar.gz
witness-tutorializer-52b01775c2c94f08786696cae7836ca56f683739.tar.bz2
witness-tutorializer-52b01775c2c94f08786696cae7836ca56f683739.zip
Fix RNG -- this will break seeds, though.
Diffstat (limited to 'Source/Random.h')
-rw-r--r--Source/Random.h2
1 files changed, 1 insertions, 1 deletions
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:
8 static int RandInt(int min, int max); 8 static int RandInt(int min, int max);
9 9
10private: 10private:
11 static int s_seed; 11 static uint32_t s_seed;
12}; 12};