Update Win32 icon.

This commit is contained in:
Brandon Wright 2018-05-03 16:42:55 -05:00
parent 67ae1227e3
commit 964b4f072f
2 changed files with 1 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 124 KiB

View File

@ -2717,7 +2717,7 @@ BOOL WinInit( HINSTANCE hInstance)
wndclass.lpfnWndProc = WinProc;
wndclass.hInstance = hInstance;
wndclass.hIcon = LoadIcon (hInstance, MAKEINTRESOURCE(IDI_ICON1));
wndclass.hIconSm = (HICON)LoadImage(hInstance, MAKEINTRESOURCE(IDI_ICON1), IMAGE_ICON, 16, 16, 0);
wndclass.hIconSm = NULL;
wndclass.hCursor = NULL;
wndclass.lpszMenuName = NULL;
wndclass.lpszClassName = TEXT("Snes9X: WndClass");