summary refs log tree commit diff stats
path: root/Source/Main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Main.cpp')
-rw-r--r--Source/Main.cpp24
1 files changed, 23 insertions, 1 deletions
diff --git a/Source/Main.cpp b/Source/Main.cpp index bcd7ebf..c7b4e69 100644 --- a/Source/Main.cpp +++ b/Source/Main.cpp
@@ -124,7 +124,29 @@ int APIENTRY wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmd
124 CreateWindow(L"STATIC", L"Place harder puzzles in annoying spots", 124 CreateWindow(L"STATIC", L"Place harder puzzles in annoying spots",
125 WS_TABSTOP | WS_VISIBLE | WS_CHILD | SS_LEFT, 125 WS_TABSTOP | WS_VISIBLE | WS_CHILD | SS_LEFT,
126 27, 50, 205, 16, hwnd, NULL, hInstance, NULL); 126 27, 50, 205, 16, hwnd, NULL, hInstance, NULL);
127 */ 127
128 CreateWindow(L"BUTTON", L"",
129 WS_VISIBLE | WS_CHILD | BS_CHECKBOX,
130 10, 52, 12, 12, hwnd, (HMENU)IDC_NORANDOMIZE, hInstance, NULL);
131 CreateWindow(L"STATIC", L"Do not randomize any puzzles",
132 WS_TABSTOP | WS_VISIBLE | WS_CHILD | SS_LEFT,
133 27, 50, 205, 16, hwnd, NULL, hInstance, NULL);
134
135 CreateWindow(L"BUTTON", L"",
136 WS_VISIBLE | WS_CHILD | BS_CHECKBOX,
137 10, 52, 12, 12, hwnd, (HMENU)IDC_CASUAL, hInstance, NULL);
138 CreateWindow(L"STATIC", L"Don't randomize context-based puzzles",
139 WS_TABSTOP | WS_VISIBLE | WS_CHILD | SS_LEFT,
140 27, 50, 205, 16, hwnd, NULL, hInstance, NULL);
141
142 CreateWindow(L"BUTTON", L"",
143 WS_VISIBLE | WS_CHILD | BS_CHECKBOX,
144 10, 52, 12, 12, hwnd, (HMENU)IDC_BANSNIPES, hInstance, NULL);
145 CreateWindow(L"STATIC", L"Prevent sniping certain puzzles",
146 WS_TABSTOP | WS_VISIBLE | WS_CHILD | SS_LEFT,
147 27, 50, 205, 16, hwnd, NULL, hInstance, NULL);
148
149*/
128 150
129 ShowWindow(hwnd, nCmdShow); 151 ShowWindow(hwnd, nCmdShow);
130 UpdateWindow(hwnd); 152 UpdateWindow(hwnd);