Re: [WINEALSA] Add Midi IN support (w/o alloca)
Jan. 11, 2004
7:10 p.m.
Christian Costa a écrit :
+ for (wDevID = 0; wDevID < MIDM_NumDevs; wDevID++) + if ( (ev->source.client == MidiInDev[wDevID].addr.client) && (ev->source.client == MidiInDev[wDevID].addr.client) ) + break; Why do you do twice the same test ? A+
January 2004
11:29 p.m.
New subject: [WINEALSA] Add Midi IN support (w/o alloca)
Eric Pouech wrote:
Christian Costa a écrit :
+ for (wDevID = 0; wDevID < MIDM_NumDevs; wDevID++) + if ( (ev->source.client == MidiInDev[wDevID].addr.client) && (ev->source.client == MidiInDev[wDevID].addr.client) ) + break;
Why do you do twice the same test ? A+
Indeed this is wrong, the second test should involve the port number! Thanks Eric to point this out. :-) Bye, Christian
8110
Age (days ago)
8110
Last active (days ago)
1 comments
2 participants
participants (2)
-
Christian Costa -
Eric Pouech