From f6d8a032d3b37d22d165fa75f995844b5a2b0d98 Mon Sep 17 00:00:00 2001 From: freedom Date: Wed, 9 Aug 2023 18:37:53 -0600 Subject: [PATCH] woopsie on the wce stuff --- progmgr/progmgr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/progmgr/progmgr.c b/progmgr/progmgr.c index 07b2632..c91f83b 100644 --- a/progmgr/progmgr.c +++ b/progmgr/progmgr.c @@ -77,10 +77,10 @@ int WINAPI wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, // Register the Group Window Class wce.cbSize = sizeof(WNDCLASSEX); wce.lpfnWndProc = GroupWndProc; - wc.cbClsExtra = 0; - wc.cbWndExtra = 0; + wce.cbClsExtra = 0; + wce.cbWndExtra = 0; wce.hInstance = hAppInstance; - wce.hIcon = hGroupIcon = LoadImage(hAppInstance, MAKEINTRESOURCE(IDI_PROGMGR), IMAGE_ICON, + wce.hIcon = hGroupIcon = LoadImage(hAppInstance, MAKEINTRESOURCE(IDI_PROGGRP), IMAGE_ICON, 0, 0, LR_DEFAULTSIZE | LR_SHARED); wce.hCursor = LoadCursor(NULL, IDC_ARROW); wce.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);