Fix test cases/windows/13 resources with custom targets

Analogous to #2851
pull/2815/head
Andrei Alexeyev 7 years ago
parent f8bd1c5ff2
commit 46f5d7a31c
No known key found for this signature in database
GPG Key ID: 363707CD4C7FE8A4
  1. 2
      test cases/windows/13 resources with custom targets/prog.c

@ -9,6 +9,6 @@ WinMain(
LPSTR lpszCmdLine,
int nCmdShow) {
HICON hIcon;
hIcon = LoadIcon(NULL, IDI_APPLICATION);
hIcon = LoadIcon(GetModuleHandle(NULL), MAKEINTRESOURCE(MY_ICON));
return hIcon ? 0 : 1;
}

Loading…
Cancel
Save