On Fri, Apr 5, 2013 at 9:41 AM, Rico Schüller wrote:
> On 05.04.2013 09:13, Nozomi Kodama wrote:
>
>> s = 0.75f;
>> -if ( order > 2 )
>> -s += 5.0f / 16.0f;
>> -if ( order > 4 )
>> -s -= 3.0f / 32.0f;
>> +if (order > 2)
>> +s = 1.0625f;
>> +if (order
Please use your real name.
On Sun, Apr 7, 2013 at 7:46 PM, mog422 wrote:
>
>
>
>
>
Am 07.04.2013 03:59, schrieb Kyle Auble:
> On Sat, Apr 6, 2013 at 5:14 PM, Dimi Paun wrote:
>
>> I've actually deployed your theme to production already:
>> http://wiki.winehq.org
> Oh, cool!
>
> Don't worry about taking time to reply, I know
> when people are busy it's good to follow up just
>
Hi,
Well, your testcase had a trivial mistake which i now see.
This line:
typedef struct AEffect * (*main_entry_t)(audioMasterCallback);
must read:
typedef struct WINAPI AEffect * (*main_entry_t)(audioMasterCallback);
WINAPI is critical here, as it changes the call from the SysV AMD64
calling