Nope, it's me. I just saw an offending line of code in s_nt.c that would definitely have made it impossible to select devices in ASIO... perhaps I can get ASIO running on my own machine now...!
If you can compile pd, in line 1369 of s_nt.c, change:
(naudiooutdev > 0 ? -1 : audiooutdev[0]-1));
to:
(naudiooutdev <= 0 ? -1 : audiooutdev[0]-1));
But I'll try this out and update the NT pre-release sometime this weekend anyway....
cheers Miller
On Sat, May 04, 2002 at 11:14:54AM -0400, Matthew Nish-Lapidus wrote:
hi,
maybe i'm missing something obvious, but... i can't seem to get the -asio flag to use anything but the default device bnumber, which is 0. i've searched through the list archives and tried all the solutions i found, but nothing seems to work.
here are a couple of the command lines i've tried:
pd -asio -soundoutdev 1 pd -soundoutdev 1 -asio pd -asio 1 ...etc.
matt.