about summary refs log tree commit diff stats
path: root/App
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2021-08-21 16:55:00 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2021-08-21 16:55:00 -0400
commit02327bf40bb9f6ef8d5e17fa982da70a3fe93eb4 (patch)
tree35cbc1452dc1f6d45b26a179474f5c4732e18bb5 /App
parentb8d472ff024ad5b13dfe0c33ae10d5fdf8a2c4cc (diff)
downloadwitness-tutorializer-02327bf40bb9f6ef8d5e17fa982da70a3fe93eb4.tar.gz
witness-tutorializer-02327bf40bb9f6ef8d5e17fa982da70a3fe93eb4.tar.bz2
witness-tutorializer-02327bf40bb9f6ef8d5e17fa982da70a3fe93eb4.zip
Implemented tutorialisation stuff
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();