From caddad668bd8fe0a2b4fbed410787f7134b8d701 Mon Sep 17 00:00:00 2001 From: jbzdarkid Date: Mon, 29 Oct 2018 18:49:30 -0700 Subject: Fix mountain elevator, fix back distance --- Source/Main.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'Source/Main.cpp') 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) seed = _wtoi(text.c_str()); } srand(seed); - Randomizer().Randomize(); + Randomizer randomizer; + randomizer.Randomize(); + /* + if (adjustSpeed.isChecked()) { + randomizer.AdjustSpeed(); + } + */ SetWindowText(hwndRandomize, L"Randomized!"); } } -- cgit 1.4.1