From 5acc5f9082fb6dde025afc57602b24420cfb1336 Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Sun, 6 Jun 2004 18:23:10 +0000 Subject: [PATCH] Increase the mixer disable shutdown delay Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1809 --- src/hardware/adlib.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hardware/adlib.cpp b/src/hardware/adlib.cpp index 0a967a3f..9e6b3c24 100644 --- a/src/hardware/adlib.cpp +++ b/src/hardware/adlib.cpp @@ -107,7 +107,7 @@ static void OPL_CallBack(Bit8u *stream, Bit32u len) { break; } - if ((PIC_Ticks-opl.last_used)>1000) { + if ((PIC_Ticks-opl.last_used)>5000) { MIXER_Enable(opl.chan,false); opl.active=false; }