From 87c8c10eb6115ebbc0389ea13ca1f17a4292a9d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Strohh=C3=A4cker?= Date: Thu, 1 Jan 2009 22:36:03 +0000 Subject: [PATCH] switch to old style volume for opl2mode Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3252 --- src/hardware/ymf262.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hardware/ymf262.c b/src/hardware/ymf262.c index 5fa9ba69..25b5c3f0 100644 --- a/src/hardware/ymf262.c +++ b/src/hardware/ymf262.c @@ -2081,8 +2081,8 @@ static void OPL3WriteReg(OPL3 *chip, int r, int v) int base = ((r&0xf) + ch_offset) * 2; /* OPL2 mode - always enabled */ - chip->pan[ base ] = 1; /* ch.A */ - chip->pan[ base +1 ] = 1; /* ch.B */ + chip->pan[ base ] = 2; /* ch.A */ + chip->pan[ base +1 ] = 2; /* ch.B */ } CH->SLOT[SLOT1].FB = (v>>1)&7 ? ((v>>1)&7) + 7 : 0;