From 13cc6fd31313e553eeb99b8c3968e33908f8a177 Mon Sep 17 00:00:00 2001 From: pagefault <> Date: Thu, 25 Oct 2001 21:07:24 +0000 Subject: [PATCH] Added taskbar icon for Windows XP --- zsnes/src/win/winlink.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsnes/src/win/winlink.cpp b/zsnes/src/win/winlink.cpp index d7e2c53c..9681564c 100644 --- a/zsnes/src/win/winlink.cpp +++ b/zsnes/src/win/winlink.cpp @@ -609,7 +609,7 @@ int RegisterWinClass(void) wcl.style = CS_OWNDC | CS_HREDRAW | CS_VREDRAW | CS_NOCLOSE; wcl.cbClsExtra = 0; wcl.cbWndExtra = 0; - wcl.hIcon = LoadIcon(NULL,IDI_APPLICATION); + wcl.hIcon = LoadIcon(NULL,"ZSNESW.ICO"); wcl.hCursor = NULL; wcl.hInstance = hInst; wcl.lpfnWndProc = (WNDPROC)Main_Proc;