about summary refs log tree commit diff stats
path: root/Source/ChallengeRandomizer.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/ChallengeRandomizer.h')
-rw-r--r--Source/ChallengeRandomizer.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/ChallengeRandomizer.h b/Source/ChallengeRandomizer.h index 10944cd..fb0338a 100644 --- a/Source/ChallengeRandomizer.h +++ b/Source/ChallengeRandomizer.h
@@ -4,12 +4,12 @@
4 4
5class ChallengeRandomizer { 5class ChallengeRandomizer {
6public: 6public:
7 ChallengeRandomizer(const std::shared_ptr<Memory>& memory, int seed); 7 ChallengeRandomizer(const std::shared_ptr<Memory>& memory, int seed);
8 8
9private: 9private:
10 void AdjustRng(int offset); 10 void AdjustRng(int offset);
11 std::shared_ptr<Memory> _memory; 11 std::shared_ptr<Memory> _memory;
12 12
13 int RNG_ADDR; 13 int RNG_ADDR;
14 int RNG2_ADDR; 14 int RNG2_ADDR;
15}; 15};