X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=plugins%2Fdfsound%2Fspu.c;h=afd5fd6c968a244c563e2624ac5b4915819b06cf;hp=c455d3d7b76788474e47457b5abaf0fe32d2231a;hb=17ed0d696a7a3649cc41dcf182e162c85002b33a;hpb=4cc3050c739a4967bce4efa0146916c74266aa75 diff --git a/plugins/dfsound/spu.c b/plugins/dfsound/spu.c index c455d3d7..afd5fd6c 100644 --- a/plugins/dfsound/spu.c +++ b/plugins/dfsound/spu.c @@ -771,7 +771,7 @@ void CALLBACK SPUasync(unsigned long cycle) if(iSpuAsyncWait) { iSpuAsyncWait++; - if(iSpuAsyncWait<=64) return; + if(iSpuAsyncWait<=16) return; iSpuAsyncWait=0; } @@ -780,6 +780,11 @@ void CALLBACK SPUasync(unsigned long cycle) if(!bSpuInit) return; // -> no init, no call MAINThread(0); // -> linux high-compat mode + + // abuse iSpuAsyncWait mechanism to reduce calls to above function + // to make it do larger chunks + // note: doing it less often than once per frame causes skips + iSpuAsyncWait=1; } }