https://bugs.winehq.org/show_bug.cgi?id=43000
--- Comment #5 from Wylda wylda@volny.cz ---
Does ... help?
No, it doesn't. I had to modify all following 4 lines to make it pass.
static inline unsigned char f_to_8(float value) - return lrintf((value + 1.f) * 0x80); + return 1;
static inline SHORT f_to_16(float value) - return le16(lrintf(value * 0x8000)); + return 1;
static LONG f_to_24(float value) - return lrintf(value * 0x80000000U); + return 1;
static inline LONG f_to_32(float value) - return le32(lrintf(value * 0x80000000U)); + return 1;
Do you have any other trick to skip building some DLL?