Jack Atherton
Jack Atherton
What input / output devices are you using in System Preferences > Sound ? What is the output of `chuck --probe`?
The part of ChucK that interfaces with the sound card is actually an external library called RtAudio. Looking at src/host/RtAudio, it seems you would want to disable the compilation flag...
Hi Jack, I haven't worked with the OscIn or OscMsg classes before, but given that this is a pretty serious bug, they might be deprecated? Here's how I know to...
I don't think you have to change the transmitter! Good luck.
Looks like this is a generic problem with line counting in multiline strings. (I would post a sample program but I can't figure out github's rules for escaping backticks; it...
I'm not certain, but since prefix unary + is a nop, this might be an instance where this is allowed through the syntax parser so we can give an error...
Hi Jean-Jacques, Apologies for the incredibly unhelpful error, but I believe the correct syntax for assigning a new array literal is `[ [1,2], [2,3], [3,5] ] @=> int Tab[][];` (that...
I think this is working as intended? You can omit the parentheses if you are assigning into a single-argument function (e.g. `20 => foo.freq;`), but if you want to actually...
I am not sure, it's been a while since I've touched that code. If I had to guess, I'd say all the compiler knows is that it's looking up a...
Looks like the lexer is responsible for advancing EM_error's notion of where we are in the file (EM_tokPos), using the adjust() function that is called before returning each token found...