summary refs log tree commit diff stats
path: root/App
diff options
context:
space:
mode:
Diffstat (limited to 'App')
-rw-r--r--App/Main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/App/Main.cpp b/App/Main.cpp index 10aac89..00bf29a 100644 --- a/App/Main.cpp +++ b/App/Main.cpp
@@ -107,7 +107,7 @@ LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
107 PostMessage(g_hwnd, WM_COMMAND, RANDOMIZE_CHALLENGE_DONE, NULL); 107 PostMessage(g_hwnd, WM_COMMAND, RANDOMIZE_CHALLENGE_DONE, NULL);
108 } else { 108 } else {
109 SetWindowText(g_randomizerStatus, L"Randomizing..."); 109 SetWindowText(g_randomizerStatus, L"Randomizing...");
110 MEMORY_CATCH(g_randomizer->Randomize()); 110 g_randomizer->Randomize();
111 PostMessage(g_hwnd, WM_COMMAND, RANDOMIZE_DONE, NULL); 111 PostMessage(g_hwnd, WM_COMMAND, RANDOMIZE_DONE, NULL);
112 } 112 }
113 }).detach(); 113 }).detach();