1
mirror of https://github.com/mpv-player/mpv synced 2024-09-05 02:48:21 +02:00

win32: simplify icon loading

I have no idea why the code used this roundabout method.
Also detab mplayer.rc.
This commit is contained in:
wm4 2012-04-14 16:53:24 +02:00
parent 923f353d2a
commit 3bb456b14d
2 changed files with 4 additions and 9 deletions

View File

@ -631,12 +631,7 @@ int vo_w32_init(struct vo *vo)
HINSTANCE hInstance = GetModuleHandleW(NULL);
HICON mplayerIcon = 0;
wchar_t exedir[MAX_PATH];
if (GetModuleFileNameW(0, exedir, MAX_PATH))
mplayerIcon = ExtractIconW(hInstance, exedir, 0);
if (!mplayerIcon)
mplayerIcon = LoadIcon(0, IDI_APPLICATION);
HICON mplayerIcon = LoadIconW(hInstance, L"IDI_ICON1");
WNDCLASSEXW wcex = {
.cbSize = sizeof wcex,