From 554a2220f2413cc29d7912ad3f7d91c9e64284cf Mon Sep 17 00:00:00 2001 From: notaz Date: Sun, 9 Oct 2011 20:50:16 +0300 Subject: psxcounters: change spu update ~2ms old value ~1.4 was weird anyway --- plugins/dfsound/spu.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'plugins/dfsound/spu.c') diff --git a/plugins/dfsound/spu.c b/plugins/dfsound/spu.c index d7dc1b6..df95f35 100644 --- a/plugins/dfsound/spu.c +++ b/plugins/dfsound/spu.c @@ -904,12 +904,14 @@ static void *MAINThread(void *arg) // SPU ASYNC... even newer epsxe func // 1 time every 'cycle' cycles... harhar +// rearmed: called every 2ms now + void CALLBACK SPUasync(unsigned long cycle) { if(iSpuAsyncWait) { iSpuAsyncWait++; - if(iSpuAsyncWait<=16/FRAG_MSECS) return; + if(iSpuAsyncWait<=16/2) return; iSpuAsyncWait=0; } -- cgit v1.2.3