if using DEV C++ to compile and you keep getting this error
[Linker error] undefined reference to `AlphaBlend'
check your main-win.c
just under the includes if this doesnt match FIX it!!
/* Make sure the winver allows the AlphaBlend function */
#if (WINVER < 0x0500)
#define WINVER 0x0500
#endif
#if (WINVER < 0x0500)
#define WINVER 0x0500
#endif
also link in -lmsimg32
if that's too confusing I've added a patch at my GitHubRepo GrimBob/angband
Leave a comment: