engine: platform: sdl: use SetClassLongPtr function to be compatible with 64-bit Windows API

This commit is contained in:
Alibek Omarov 2022-06-29 02:44:50 +03:00
parent d52b07beac
commit 79dc090aae

View File

@ -609,7 +609,7 @@ static void WIN_SetWindowIcon( HICON ico )
if( SDL_GetWindowWMInfo( host.hWnd, &wminfo ) ) if( SDL_GetWindowWMInfo( host.hWnd, &wminfo ) )
{ {
SetClassLong( wminfo.info.win.window, GCL_HICON, (LONG)ico ); SetClassLongPtr( wminfo.info.win.window, GCLP_HICON, (LONG)ico );
} }
} }
#endif #endif