engine: platform: sdl: enable ICO support on Win64
This commit is contained in:
parent
36cec298c2
commit
3e23634369
1 changed files with 3 additions and 3 deletions
|
@ -598,7 +598,7 @@ void VID_RestoreScreenResolution( void )
|
||||||
#endif // SDL_VERSION_ATLEAST( 2, 0, 0 )
|
#endif // SDL_VERSION_ATLEAST( 2, 0, 0 )
|
||||||
}
|
}
|
||||||
|
|
||||||
#if XASH_WIN32 && !XASH_64BIT // ICO support only for Win32
|
#if XASH_WIN32 // ICO support only for Win32
|
||||||
#include "SDL_syswm.h"
|
#include "SDL_syswm.h"
|
||||||
static void WIN_SetWindowIcon( HICON ico )
|
static void WIN_SetWindowIcon( HICON ico )
|
||||||
{
|
{
|
||||||
|
@ -686,7 +686,7 @@ qboolean VID_CreateWindow( int width, int height, qboolean fullscreen )
|
||||||
VID_RestoreScreenResolution();
|
VID_RestoreScreenResolution();
|
||||||
}
|
}
|
||||||
|
|
||||||
#if XASH_WIN32 && !XASH_64BIT // ICO support only for Win32
|
#if XASH_WIN32 // ICO support only for Win32
|
||||||
if( FS_FileExists( GI->iconpath, true ) )
|
if( FS_FileExists( GI->iconpath, true ) )
|
||||||
{
|
{
|
||||||
HICON ico;
|
HICON ico;
|
||||||
|
@ -728,7 +728,7 @@ qboolean VID_CreateWindow( int width, int height, qboolean fullscreen )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#if XASH_WIN32 && !XASH_64BIT // ICO support only for Win32
|
#if XASH_WIN32 // ICO support only for Win32
|
||||||
if( !iconLoaded )
|
if( !iconLoaded )
|
||||||
{
|
{
|
||||||
WIN_SetWindowIcon( LoadIcon( host.hInst, MAKEINTRESOURCE( 101 ) ) );
|
WIN_SetWindowIcon( LoadIcon( host.hInst, MAKEINTRESOURCE( 101 ) ) );
|
||||||
|
|
Loading…
Add table
Reference in a new issue