(11-27-2022, 06:51 AM)mnrvovrfc Wrote: ...snip...
"Synchronous" means more than one voice at a time, right? It's possible with "_SND" commands in QB64(PE) but the programmer will have to manage it.
...snip...
Sorry, by synchronous, I mean is the SOUND statement synchronous or asynchronous vis-à-vis the remaining sequence of statements in a running program?
i.e. synchronous operation requires that one operation (operation b) must wait for another (operation a) to complete before it (operation b) can begin.
I'm thinking SOUND is:
- asynchronous vis-à-vis the rest of the statements in a running program
- synchronous vis-à-vis other SOUND statements in a running program (i.e. one sound will not happen until a previous one is done)
Because I haven't seen that written anywhere, I'm not super-confident I've understood all of that correctly.
(My understanding of things heavily depends on seeing the words and visual cues that help me relate back to things I'm familiar with.)