add WASAPI exclusive mode flag to PortAudio backen

d
This commit is contained in:
tildearrow 2023-08-31 04:30:49 -05:00
parent be38b992e3
commit fa7405090e
5 changed files with 78 additions and 9 deletions

View file

@ -3370,6 +3370,7 @@ bool DivEngine::initAudioBackend() {
want.inChans=0;
want.outChans=getConfInt("audioChans",2);
want.outFormat=TA_AUDIO_FORMAT_F32;
want.wasapiEx=getConfInt("wasapiEx",0);
want.name="Furnace";
if (want.outChans<1) want.outChans=1;