diff options
author | jbzdarkid <jbzdarkid@gmail.com> | 2019-11-19 09:42:45 -0800 |
---|---|---|
committer | jbzdarkid <jbzdarkid@gmail.com> | 2019-11-19 09:42:45 -0800 |
commit | 52b01775c2c94f08786696cae7836ca56f683739 (patch) | |
tree | d6d7d7604c8f5d793be28bcf21753b02d7d31bb7 /Source/Random.h | |
parent | 7a13ef0a94f6ed4989677530b1b37e1af0692fc7 (diff) | |
download | witness-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.h | 2 |
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 | ||
10 | private: | 10 | private: |
11 | static int s_seed; | 11 | static uint32_t s_seed; |
12 | }; | 12 | }; |