diff options
author | jbzdarkid <jbzdarkid@gmail.com> | 2018-10-29 18:49:30 -0700 |
---|---|---|
committer | jbzdarkid <jbzdarkid@gmail.com> | 2018-10-29 18:49:30 -0700 |
commit | caddad668bd8fe0a2b4fbed410787f7134b8d701 (patch) | |
tree | 4057d766268b27797610818a98a4030e2d339e8f /Source/Main.cpp | |
parent | 0e989fe5111ca879584e1594804422b9b4ae0c1a (diff) | |
download | witness-tutorializer-caddad668bd8fe0a2b4fbed410787f7134b8d701.tar.gz witness-tutorializer-caddad668bd8fe0a2b4fbed410787f7134b8d701.tar.bz2 witness-tutorializer-caddad668bd8fe0a2b4fbed410787f7134b8d701.zip |
Fix mountain elevator, fix back distance
Diffstat (limited to 'Source/Main.cpp')
-rw-r--r-- | Source/Main.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Source/Main.cpp b/Source/Main.cpp index 0081808..86a784b 100644 --- a/Source/Main.cpp +++ b/Source/Main.cpp | |||
@@ -118,7 +118,13 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) | |||
118 | seed = _wtoi(text.c_str()); | 118 | seed = _wtoi(text.c_str()); |
119 | } | 119 | } |
120 | srand(seed); | 120 | srand(seed); |
121 | Randomizer().Randomize(); | 121 | Randomizer randomizer; |
122 | randomizer.Randomize(); | ||
123 | /* | ||
124 | if (adjustSpeed.isChecked()) { | ||
125 | randomizer.AdjustSpeed(); | ||
126 | } | ||
127 | */ | ||
122 | SetWindowText(hwndRandomize, L"Randomized!"); | 128 | SetWindowText(hwndRandomize, L"Randomized!"); |
123 | } | 129 | } |
124 | } | 130 | } |