diff options
author | Vitaly Novichkov <admin@wohlnet.ru> | 2018-07-31 01:03:42 +0300 |
---|---|---|
committer | Vitaly Novichkov <admin@wohlnet.ru> | 2018-07-31 01:03:42 +0300 |
commit | 34f42407a2a2e90c2ba45e9e70c86529bd67c418 (patch) | |
tree | 774b7b9c004f35d284ce81978dc16427d9d3ab5a /src/chips/nuked/nukedopl3.c | |
parent | 7a2f4a8627142561acca8a2b22823eea4d222594 (diff) | |
download | libADLMIDI-34f42407a2a2e90c2ba45e9e70c86529bd67c418.tar.gz libADLMIDI-34f42407a2a2e90c2ba45e9e70c86529bd67c418.tar.bz2 libADLMIDI-34f42407a2a2e90c2ba45e9e70c86529bd67c418.zip |
Fix the initial panning state
Diffstat (limited to 'src/chips/nuked/nukedopl3.c')
-rw-r--r-- | src/chips/nuked/nukedopl3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chips/nuked/nukedopl3.c b/src/chips/nuked/nukedopl3.c index ca10479..80a8975 100644 --- a/src/chips/nuked/nukedopl3.c +++ b/src/chips/nuked/nukedopl3.c @@ -1258,8 +1258,8 @@ void OPL3_Reset(opl3_chip *chip, Bit32u samplerate) chip->channel[channum].chtype = ch_2op; chip->channel[channum].cha = 0xffff; chip->channel[channum].chb = 0xffff; - chip->channel[channum].chl = 46052; - chip->channel[channum].chr = 46052; + chip->channel[channum].chl = 46340; + chip->channel[channum].chr = 46340; chip->channel[channum].ch_num = channum; OPL3_ChannelSetupAlg(&chip->channel[channum]); } |