durationTypeMask = (wxUint32)0xff000000
should be
durationTypeMask = (wxUint32)0x7f000000
return (HIBYTE(HIWORD(m_dwDuration)));
in the v1.7 code, which would equate to 0xff000000.
On Aug 22, 12:17 am, "allpowert...@gmail.com" <allpowert...@gmail.com>
wrote:
0x7f000000 = ((1 << 24) | (2 << 24) | (4 << 24) | (8 << 24) | (16 <<
24) | (32 << 24) | (64 << 24))
On Sep 3, 1:10 pm, "allpowert...@gmail.com" <allpowert...@gmail.com>
wrote: