Alternative .ico file without PNG compression in case you're using an older MSVC version.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5132 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Eukara 2017-07-31 14:42:31 +00:00
parent 3360e42379
commit d980fd74a0
2 changed files with 8 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 KiB

View File

@ -88,11 +88,19 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_UK
IDI_ICON1 ICON BRANDING_ICON
#elif defined(BRANDING_ICON)
IDI_ICON1 ICON BRANDING_ICON
#if defined( _MSC_VER ) && ( _MSC_VER >= 1500 )
ID1_ICON2 ICON "fte_eukara.ico"
#else
ID1_ICON2 ICON "fte_eukaranopng.ico"
#endif
IDI_ICON3 ICON "bymorphed.ico"
IDI_ICON4 ICON "q2.ico"
#else
#if defined( _MSC_VER ) && ( _MSC_VER >= 1500 )
ID1_ICON1 ICON "fte_eukara.ico"
#else
ID1_ICON1 ICON "fte_eukaranopng.ico"
#endif
IDI_ICON2 ICON "bymorphed.ico"
IDI_ICON3 ICON "q2.ico"
#endif