OPL: fix missing ADPCM channel in per-chan osc

This commit is contained in:
tildearrow 2023-01-28 18:10:25 -05:00
parent dcf06445ba
commit 47293decd3
1 changed files with 5 additions and 1 deletions

View File

@ -1555,7 +1555,11 @@ DivMacroInt* DivPlatformOPL::getChanMacroInt(int ch) {
}
DivDispatchOscBuffer* DivPlatformOPL::getOscBuffer(int ch) {
if (ch>=totalChans) return NULL;
if (oplType==759) {
if (ch>=totalChans+1) return NULL;
} else {
if (ch>=totalChans) return NULL;
}
if (oplType==3 && ch<12) {
if (chan[ch&(~1)].fourOp) {
if (ch&1) {